react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 710 B
JSX
import React, { Component } from 'react';
export default class SprayIcon 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-spray-icon ${this.props.className}`}><path d="M10 4h2v2h-2V4zM7 3h2v2H7V3zm0 3h2v2H7V6zM6 8v2H4V8h2zm0-3v2H4V5h2zm0-3v2H4V2h2zm7 20a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2V7h1V4h3v3h1v1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5zm0-12v10h5V10h-5z"/></svg>
)
}
}