react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 764 B
JSX
import React, { Component } from 'react';
export default class BluetoothOffIcon 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-off-icon ${this.props.className}`}><path d="M12.998 5.83l1.88 1.88-1.597 1.601 1.412 1.406L17.71 7.7l-5.708-5.697h-1V7.03l1.995 1.998M5.41 3.999L3.999 5.41l6.592 6.592L5 17.587 6.411 19l4.59-4.59v7.594h1.002l4.286-4.293 2.3 2.29L20 18.589m-7.002-.42v-3.76l1.88 1.88"/></svg>
)
}
}