
      import React, { Component } from 'react';

      export default class ImageIcon 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-image-icon ${this.props.className}`}><path d="M18.999 3H4.99A1.992 1.992 0 0 0 3 5v14c0 1.105.886 2 1.991 2H19A2 2 0 0 0 21 19V5a2 2 0 0 0-2.001-2zm0 12.5a.5.5 0 0 1-.5.5H5.49a.5.5 0 0 1-.5-.5v-7a.5.5 0 0 1 .5-.5H18.5a.5.5 0 0 1 .5.5v7z"/></svg>
          )
        }
      }