
      import React, { Component } from 'react';

      export default class ChartGanttIcon 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-chart-gantt-icon ${this.props.className}`}><path d="M2 5h8V2h2v20h-2v-4H6v-3h4v-2H4v-3h6V8H2V5zm12 0h3v3h-3V5zm0 5h5v3h-5v-3zm0 5h8v3h-8v-3z"/></svg>
          )
        }
      }