react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 448 B
JavaScript
import React from 'react';
export default function BluetoothOffIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-bluetooth-off ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2M5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59m-7-.42v-3.76l1.88 1.88" />
</svg>
);
}