
      import React, { Component } from 'react';

      export default class MatrixIcon 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-matrix-icon ${this.props.className}`}><path d="M2 2h4v2H4v16h2v2H2V2zm18 2h-2V2h4v20h-4v-2h2V4zM9 5h1v5h1v1H8v-1h1V6l-1 .5v-1L9 5zm6 8h1v5h1v1h-3v-1h1v-4l-1 .5v-1l1-.5zm-6 0c1.105 0 2 1.343 2 3s-.895 3-2 3-2-1.343-2-3 .895-3 2-3zm0 1c-.552 0-1 .895-1 2s.448 2 1 2 1-.895 1-2-.448-2-1-2zm6-9c1.105 0 2 1.343 2 3s-.895 3-2 3-2-1.343-2-3 .895-3 2-3zm0 1c-.552 0-1 .895-1 2s.448 2 1 2 1-.895 1-2-.448-2-1-2z"/></svg>
          )
        }
      }