
      import React, { Component } from 'react';

      export default class TableColumnRemoveIcon 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-table-column-remove-icon ${this.props.className}`}><path d="M4 2h7a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 8v4h7v-4H4zm0 6v4h7v-4H4zM4 4v4h7V4H4zm13.586 8L15 9.414 16.414 8 19 10.586 21.586 8 23 9.414 20.414 12 23 14.586 21.586 16 19 13.414 16.414 16 15 14.586 17.586 12z"/></svg>
          )
        }
      }