
      import React, { Component } from 'react';

      export default class TableColumnPlusAfterIcon 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-plus-after-icon ${this.props.className}`}><path d="M11 2a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H2V2h9zm-7 8v4h7v-4H4zm0 6v4h7v-4H4zM4 4v4h7V4H4zm11 7h3V8h2v3h3v2h-3v3h-2v-3h-3v-2z"/></svg>
          )
        }
      }