react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 1.15 kB
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdSpeakerNotes extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m30 13.360000000000001v-3.360000000000001h-13.36v3.3599999999999994h13.36z m0 4.999999999999998v-3.3599999999999994h-13.36v3.3599999999999994h13.36z m-5 5v-3.3599999999999994h-8.36v3.3599999999999994h8.36z m-11.64-10v-3.3599999999999994h-3.3599999999999994v3.3599999999999994h3.3599999999999994z m0 5v-3.3599999999999994h-3.3599999999999994v3.3599999999999994h3.3599999999999994z m0 5v-3.3599999999999994h-3.3599999999999994v3.3599999999999994h3.3599999999999994z m20-20q1.3283333333333331 0 2.3049999999999997 0.9766666666666666t0.9750000000000014 2.3049999999999997v20q0 1.3283333333333331-0.9766666666666666 2.3433333333333337t-2.306666666666665 1.0166666666666657h-23.35666666666667l-6.640000000000001 6.640000000000001v-30q0-1.3283333333333331 0.9766666666666666-2.3049999999999997t2.3049999999999997-0.9750000000000001h26.71666666666667z"/></g>
</IconBase>
);
}
}