react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 786 B
JSX
import React, { Component } from 'react';
export default class GridIcon 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-grid-icon ${this.props.className}`}><path d="M10 4v4h4V4h-4zm6 0v4h4.006L20 4h-4zm0 6v4h4.015l-.006-4H16zm0 6v4h4.023l-.005-4H16zm-2 4v-4h-4v4h4zm-6 0v-4H4.018l.005 4H8zm0-6v-4H4.009l.006 4H8zm0-6V4H4l.006 4H8zm2 6h4v-4h-4v4zM4 2h16a2 2 0 0 1 2 2l.023 16a2 2 0 0 1-2 2h-16a2 2 0 0 1-2-2L2 4a2 2 0 0 1 2-2z"/></svg>
)
}
}