
      import React, { Component } from 'react';

      export default class LayersIcon 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-layers-icon ${this.props.className}`}><path d="M12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27m7.36 8.27l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27-7.38 5.74z"/></svg>
          )
        }
      }