
      import React, { Component } from 'react';

      export default class SelectionIcon 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-selection-icon ${this.props.className}`}><path d="M2 4a2 2 0 0 1 2-2h3v2H4v3H2V4zm20 0v3h-2V4h-3V2h3a2 2 0 0 1 2 2zm-2 16v-3h2v3a2 2 0 0 1-2 2h-3v-2h3zM2 20v-3h2v3h3v2H4a2 2 0 0 1-2-2zm8-18h4v2h-4V2zm0 18h4v2h-4v-2zm10-10h2v4h-2v-4zM2 10h2v4H2v-4z"/></svg>
          )
        }
      }