react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 798 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdSignalWifi1BarLock extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><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"/><path d="m25.8 24.2c0-4.7 3.7-8.4 8.4-8.4 0.6 0 1.1 0 1.6 0.2l3.5-4.3c-0.6-0.5-8.1-6.7-19.3-6.7-11.2 0-18.7 6.2-19.3 6.7l19.3 24.1 5.8-7.1v-4.5z" opacity=".3"/><path d="m11.2 24.8l8.8 11 5.8-7.1v-4.4c0-0.3 0-0.8 0.2-1.1-1.5-0.9-3.7-1.5-6-1.5-5 0-8.5 2.8-8.8 3.1z"/></g>
</IconBase>
);
}
}