react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 684 B
JSX
import React, { Component } from 'react';
export default class TableColumnPlusBeforeIcon 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-before-icon ${this.props.className}`}><path d="M13 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h9V2h-9zm7 8v4h-7v-4h7zm0 6v4h-7v-4h7zm0-12v4h-7V4h7zM9 11H6V8H4v3H1v2h3v3h2v-3h3v-2z"/></svg>
)
}
}