
      import React, { Component } from 'react';

      export default class EqualBoxIcon 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-equal-box-icon ${this.props.className}`}><path d="M17 15.999v-2H7v2h10zm2-13c1.102 0 2 .895 2 2v14c0 1.103-.898 2-2 2H5a2 2 0 0 1-2-2v-14a2 2 0 0 1 2-2h14zM17 10V8H7v2h10z"/></svg>
          )
        }
      }