UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 603 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class MdRecordVoiceOver extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path fill="#444" d="m33.4 3.4c6.5 6.7 6.5 16.8 0 23.2l-2.7-2.6c4.6-5.3 4.6-13 0-18z m-5.4 5.5c3.3 3.7 3.3 8.8 0 12.1l-2.8-2.8c1.4-1.9 1.4-4.5 0-6.5z m-13 16.1c4.5 0 13.4 2.2 13.4 6.6v3.4h-26.8v-3.4c0-4.4 8.9-6.6 13.4-6.6z m-6.6-10c0-3.7 2.9-6.6 6.6-6.6s6.6 2.9 6.6 6.6-2.9 6.6-6.6 6.6-6.6-2.9-6.6-6.6z"/></g> </IconBase> ); } }