react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 945 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdPortableWifiOff extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m29.3 23.7c0.4-1.1 0.7-2.4 0.7-3.7 0-5.5-4.5-10-10-10-1.3 0-2.6 0.3-3.7 0.7l2.7 2.7c0.3 0 0.6-0.1 1-0.1 3.7 0 6.7 3 6.7 6.7 0 0.4-0.1 0.7-0.1 1.1l2.7 2.6z m-9.3-17c7.4 0 13.3 5.9 13.3 13.3 0 2.3-0.5 4.4-1.5 6.2l2.4 2.5c1.6-2.6 2.5-5.5 2.5-8.7 0-9.2-7.5-16.7-16.7-16.7-3.2 0-6.1 0.9-8.7 2.5l2.5 2.4c1.8-1 4-1.5 6.2-1.5z m-14.5-2.5l-2.2 2.1 3.5 3.5c-2.1 2.8-3.5 6.3-3.5 10.2 0 6.2 3.4 11.5 8.4 14.4l1.6-2.9c-3.9-2.3-6.6-6.6-6.6-11.5 0-2.9 0.9-5.6 2.5-7.8l2.4 2.4c-1 1.5-1.6 3.4-1.6 5.4 0 3.7 2 6.9 5 8.6l1.7-2.8c-2-1.2-3.4-3.3-3.4-5.8 0-1.1 0.3-2.1 0.8-3l2.6 2.6 0 0.4c0 1.8 1.5 3.3 3.3 3.3l0.4 0 0 0 12.5 12.5 2.1-2.1-27.9-27.9-1.7-1.6z"/></g>
</IconBase>
);
}
}