
      import React, { Component } from 'react';

      export default class DirectionsIcon extends Component {
        static defaultProps = {
          className: ''
        };

        constructor(props) {
          super(props);
        }

        render() {
          return (
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-directions-icon ${this.props.className}`}><path d="M14 14.498v-2.5h-4v3H8v-4a1 1 0 0 1 1-1h5v-2.5l3.5 3.5m4.206.294l-9-8.999-.003-.002a.996.996 0 0 0-1.412.001l-9 9a1 1 0 0 0 0 1.414l9 9c.392.389 1.023.39 1.414 0l9.001-9a.999.999 0 0 0 0-1.414z"/></svg>
          )
        }
      }