react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 811 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdVoiceChat extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m30 23.36v-13.36l-6.640000000000001 5.313333333333333v-5.313333333333333h-13.36v13.36h13.36v-5.390000000000001z m3.3599999999999994-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>
);
}
}