
      import React, { Component } from 'react';

      export default class ChartBarStackedIcon 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-bar-stacked-icon ${this.props.className}`}><path d="M22 21H2V3h2v16h2v-2h4v2h2v-3h4v3h2v-2h4v4zm-4-7h4v2h-4v-2zm-6-8h4v3h-4V6zm4 9h-4v-5h4v5zM6 10h4v2H6v-2zm4 6H6v-3h4v3z"/></svg>
          )
        }
      }