react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 784 B
JSX
import React, { Component } from 'react';
export default class BluetoothConnectIcon 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-connect-icon ${this.props.className}`}><path d="M19 9.998l-2 2 2 2 2-2m-6.122 4.293L13 18.171v-3.759m0-8.586l1.88 1.88-1.88 1.878m4.707-1.879L12 1.998h-1v7.586L6.413 4.998 5 6.412l5.586 5.586L5 17.584l1.414 1.414L11 14.412v7.586h1l5.707-5.707-4.293-4.293m-6.414 0l-2-2-2 2 2 2 2-2z"/></svg>
)
}
}