
      import React, { Component } from 'react';

      export default class CropFreeIcon 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-crop-free-icon ${this.props.className}`}><path d="M19 2.998h-4v2h4v4h2v-4a2 2 0 0 0-2-2zm0 16h-4v2h4a2 2 0 0 0 2-2v-4h-2m-14 0H3v4a2 2 0 0 0 2 2h4v-2H5m-2-14v4h2v-4h4v-2H5a2 2 0 0 0-2 2z"/></svg>
          )
        }
      }