
      import React, { Component } from 'react';

      export default class TableRowPlusBeforeIcon 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-row-plus-before-icon ${this.props.className}`}><path d="M22 14a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7h2v-2h4v2h2v-2h4v2h2v-2h4v2h2v-7zM4 14h4v3H4v-3zm6 0h4v3h-4v-3zm10 0v3h-4v-3h4zm-9-4h2V7h3V5h-3V2h-2v3H8v2h3v3z"/></svg>
          )
        }
      }