
      import React, { Component } from 'react';

      export default class BusDoubleDeckerIcon 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-bus-double-decker-icon ${this.props.className}`}><path d="M3 4a1.99 1.99 0 0 0-2 2v11h2a3 3 0 0 0 6 0h6a3 3 0 0 0 6 0h2v-3c0-1.11-.89-2-2-2h-2V9.5h4V6c0-1.11-.89-2.025-2-2H3zm-.5 1.5h4V8h-4V5.5zm5.5 0h4V8H8V5.5zm5.5 0h4V8h-4V5.5zm5.5 0h2.5V8H19V5.5zm-5.5 4h4V12h-4V9.5zm-11 0h4V12h-4V9.5zm5.5 0h4V12H8V9.5zm-2 6a1.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>
          )
        }
      }