UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 809 B
import React, { Component } from 'react'; export default class BluetoothTransferIcon 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-transfer-icon ${this.props.className}`}><path d="M14.707 7.707L10.414 12l4.293 4.293L9 22H8v-7.586L3.414 19 2 17.586 7.586 12 2 6.414 3.414 5 8 9.586V2h1l5.707 5.707zM10 5.828v3.758l1.879-1.879-1.88-1.879zm1.879 10.465l-1.88-1.879v3.758l1.88-1.879zM22 8.002h-2v3h-2v-3h-2l3-4 3 4zm0 8l-3 4-3-4h2v-3h2v3h2z"/></svg> ) } }