
      import React, { Component } from 'react';

      export default class BorderAllIcon 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-border-all-icon ${this.props.className}`}><path d="M19 10.998h-6v-6h6m0 14h-6v-6h6m-8-2H5v-6h6m0 14H5v-6h6m-8 8h18v-18H3v18z"/></svg>
          )
        }
      }