react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 834 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdSignalWifi3BarLock extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path opacity=".3" d="m20 5c-11.2 0-18.7 6.2-19.3 6.7l5.3 6.5 14 17.6 5.8-7.1v-4.4c0-3.6 2.4-6.6 5.5-7.8 0.5-0.2 0.9-0.3 1.4-0.3 0.5-0.2 1-0.2 1.5-0.2 0.6 0 1.1 0 1.6 0.2l3.5-4.5c-0.6-0.5-8.1-6.7-19.3-6.7z"/><path d="m38.3 26.7v-2.5c0-2.4-1.8-4.2-4.1-4.2s-4.2 1.8-4.2 4.2v2.5c-0.8 0-1.7 0.8-1.7 1.6v6.7c0 0.8 0.9 1.7 1.7 1.7h8.3c0.9 0 1.7-0.9 1.7-1.7v-6.7c0-0.8-0.8-1.6-1.7-1.6z m-1.6 0h-5v-2.5c0-1.4 1.1-2.5 2.5-2.5s2.5 1.1 2.5 2.5v2.5z m-16.7 9.1l5.8-7.1v-4.4c0-3.6 2.4-6.6 5.5-7.8-2.5-1.5-6.5-3.2-11.3-3.2-8 0-13.3 4.4-14.2 4.9"/></g>
</IconBase>
);
}
}