react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 691 B
JSX
import React, { Component } from 'react';
export default class VectorRectangleIcon 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-rectangle-icon ${this.props.className}`}><path d="M2 4h6v2h8V4h6v6h-2v4h2v6h-6v-2H8v2H2v-6h2v-4H2V4zm14 6V8H8v2H6v4h2v2h8v-2h2v-4h-2zM4 6v2h2V6H4zm14 0v2h2V6h-2zM4 16v2h2v-2H4zm14 0v2h2v-2h-2z"/></svg>
)
}
}