
      import React, { Component } from 'react';

      export default class CollageIcon 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-collage-icon ${this.props.className}`}><path d="M5 2.998A1.999 1.999 0 0 0 2.998 5v13.999C2.998 20.108 3.89 21 5 21h6.001V2.998m1.997 0V11H21V5A1.999 1.999 0 0 0 19 2.998m-6.001 10V21h6A1.999 1.999 0 0 0 21.002 19v-6.001"/></svg>
          )
        }
      }