
      import React, { Component } from 'react';

      export default class CarBatteryIcon 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-battery-icon ${this.props.className}`}><path d="M4 3v3H1v14h22V6h-3V3h-6v3h-4V3H4zM3 8h18v10H3V8zm12 2v2h-2v2h2v2h2v-2h2v-2h-2v-2h-2zM5 12v2h6v-2H5z"/></svg>
          )
        }
      }