UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 691 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class MdPhoneInTalk extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path fill="#444" d="m25 20c0-2.7-2.3-5-5-5v-3.4c4.6 0 8.4 3.8 8.4 8.4h-3.4z m6.6 0c0-6.5-5.1-11.6-11.6-11.6v-3.4c8.3 0 15 6.7 15 15h-3.4z m1.8 5.9c0.9 0 1.6 0.7 1.6 1.6v5.9c0 0.9-0.7 1.6-1.6 1.6-15.7 0-28.4-12.7-28.4-28.4 0-0.9 0.7-1.6 1.6-1.6h5.9c0.9 0 1.6 0.7 1.6 1.6 0 2.2 0.4 4.1 1 6 0.1 0.5 0.1 1.2-0.4 1.7l-3.7 3.7c2.4 4.7 6.3 8.6 11 11l3.7-3.7c0.5-0.5 1.2-0.5 1.7-0.4 1.9 0.7 3.9 1 6 1z"/></g> </IconBase> ); } }