
      import React, { Component } from 'react';

      export default class CarIcon 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-car-icon ${this.props.className}`}><path d="M5 10.998l1.5-4.5h11l1.5 4.5m-1.5 5a1.5 1.5 0 1 1 0-3.001 1.5 1.5 0 0 1 0 3.001zm-11 0a1.5 1.5 0 1 1 0-3.001 1.5 1.5 0 0 1 0 3.001zM18.917 6.01A1.5 1.5 0 0 0 17.5 5h-11a1.5 1.5 0 0 0-1.418 1.01L3 12v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-8l-2.08-5.99z"/></svg>
          )
        }
      }