react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 742 B
JSX
import React, { Component } from 'react';
export default class TableLargeIcon 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-large-icon ${this.props.className}`}><path d="M4 3h16a2 2 0 0 1 2 2v15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm0 4v3h4V7H4zm6 0v3h4V7h-4zm10 3V7h-4v3h4zM4 12v3h4v-3H4zm0 8h4v-3H4v3zm6-8v3h4v-3h-4zm0 8h4v-3h-4v3zm10 0v-3h-4v3h4zm0-8h-4v3h4v-3z"/></svg>
)
}
}