react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 763 B
JSX
import React, { Component } from 'react';
export default class BluetoothSettingsIcon extends Component {
static defaultProps = {
className: ''
};
constructor(props) {
super(props);
}
render() {
return (
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-bluetooth-settings-icon ${this.props.className}`}><path d="M14.88 14.29L13 16.17v-3.76l1.88 1.88zM13 3.83l1.88 1.88L13 7.59m4.71-1.88L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM15 24h2v-2h-2m-8 2h2v-2H7m4 2h2v-2h-2v2z"/></svg>
)
}
}