react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 474 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class FaBluetoothB extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path fill="#444" d="m21.8 31.8l3.9-3.9-3.9-3.8v7.7z m0-15.9l3.9-3.8-3.9-3.9v7.7z m0.7 4.1l8 7.9-12.1 12.1v-15.9l-6.6 6.6-2.4-2.4 8.3-8.3-8.3-8.3 2.4-2.4 6.6 6.6v-15.9l12.1 12.1z"/></g>
</IconBase>
);
}
}