react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 1.06 kB
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdFormatPaint extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m30 6.640000000000001h5v13.36h-13.36v15q0 0.7033333333333331-0.466666666666665 1.1716666666666669t-1.173333333333332 0.46666666666666856h-3.360000000000003q-0.7033333333333331 0-1.1716666666666669-0.46666666666666856t-0.4683333333333337-1.1716666666666669v-18.36h16.64v-6.640000000000001h-1.6400000000000006v1.6400000000000006q0 0.7033333333333331-0.466666666666665 1.211666666666666t-1.173333333333332 0.5099999999999998h-20q-0.7033333333333331 0-1.211666666666667-0.5083333333333329t-0.5099999999999998-1.209999999999999v-6.643333333333334q0-0.7033333333333331 0.5083333333333337-1.1716666666666669t1.209999999999999-0.4666666666666668h20q0.7033333333333331 0 1.1716666666666669 0.4666666666666668t0.471666666666664 1.1716666666666669v1.6400000000000006z"/></g>
</IconBase>
);
}
}