
      import React, { Component } from 'react';

      export default class ChartLineStackedIcon 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-line-stacked-icon ${this.props.className}`}><path d="M17.453 15.184L22 6.81V21H2V3h2v16h2.572l4.39-7.563 6.491 3.747zM22 3l-.028.446L17 11l-7-5-4 6V3h16z"/></svg>
          )
        }
      }