
      import React, { Component } from 'react';

      export default class SteeringIcon 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-steering-icon ${this.props.className}`}><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 2c4.1 0 7.5 3.1 8 7h-3c-.5-1.1-2.6-2-5-2s-4.5.9-5 2H4c.5-3.9 3.9-7 8-7zm-8 9h3c.2 1.3 1.2 3.6 4 4v3c-3.6-.4-6.6-3.4-7-7zm9 7v-3c2.8-.4 3.7-2.7 4-4h3c-.4 3.6-3.4 6.6-7 7z"/></svg>
          )
        }
      }