
      import React, { Component } from 'react';

      export default class GridLargeIcon 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-grid-large-icon ${this.props.className}`}><path d="M4 2h16a2 2 0 0 1 2 2l.023 16a2 2 0 0 1-2 2h-16a2 2 0 0 1-2-2L2 4a2 2 0 0 1 2-2zm0 2v7h7V4H4zm0 16h7v-7H4v7zm16 0v-7h-7v7h7zm0-16h-7v7h7V4z"/></svg>
          )
        }
      }