react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 683 B
JSX
import React, { Component } from 'react';
export default class VectorSquareIcon 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-vector-square-icon ${this.props.className}`}><path d="M2 2h6v2h8V2h6v6h-2v8h2v6h-6v-2H8v2H2v-6h2V8H2V2zm14 6V6H8v2H6v8h2v2h8v-2h2V8h-2zM4 4v2h2V4H4zm14 0v2h2V4h-2zM4 18v2h2v-2H4zm14 0v2h2v-2h-2z"/></svg>
)
}
}