react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 509 B
JavaScript
import React from 'react';
export default function BluetoothTransferIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-bluetooth-transfer ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M14.71 7.71L10.41 12l4.3 4.29L9 22H8v-7.59L3.41 19 2 17.59 7.59 12 2 6.41 3.41 5 8 9.59V2h1l5.71 5.71M10 5.83v3.76l1.88-1.88L10 5.83m1.88 10.46L10 14.41v3.76l1.88-1.88M22 8h-2v3h-2V8h-2l3-4 3 4m0 8l-3 4-3-4h2v-3h2v3h2z" />
</svg>
);
}