react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 906 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdComment extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m30 13.360000000000001v-3.360000000000001h-20v3.3599999999999994h20z m0 4.999999999999998v-3.3599999999999994h-20v3.3599999999999994h20z m0 5v-3.3599999999999994h-20v3.3599999999999994h20z m6.640000000000001-16.720000000000002v30.000000000000004l-6.640000000000001-6.640000000000001h-23.36q-1.3283333333333331 0-2.3049999999999997-1.0166666666666657t-0.9750000000000001-2.3416666666666686v-20q0-1.3283333333333331 0.976666666666667-2.3049999999999997t2.3066666666666666-0.9766666666666666h26.716666666666665q1.3299999999999983 0 2.306666666666665 0.9766666666666666t0.9766666666666666 2.3049999999999997z"/></g>
</IconBase>
);
}
}