
      import React, { Component } from 'react';

      export default class WallIcon 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-wall-icon ${this.props.className}`}><path d="M3 16h9v5H3v-5zm-1-6h6v5H2v-5zm7 0h6v5H9v-5zm7 0h6v5h-6v-5zm-3 6h8v5h-8v-5zM3 4h8v5H3V4zm9 0h9v5h-9V4z"/></svg>
          )
        }
      }