
      import React, { Component } from 'react';

      export default class CarSportsIcon 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-sports-icon ${this.props.className}`}><path d="M12 8.5H7L4 11H3c-1.11 0-2 .89-2 2v3h2.174A3 3 0 0 0 6 18a3 3 0 0 0 2.824-2h6.35A3 3 0 0 0 18 18a3 3 0 0 0 2.824-2H23v-1c0-1.11-1.026-1.469-2-2l-9-4.5zM5.25 12l2.25-2h4l4 2H5.25zM6 13.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm12 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z"/></svg>
          )
        }
      }