Animated React component — BluetoothConnected / BluetoothConnectedIcon
Hover the bluetooth-connected icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { BluetoothConnected } from "lucide-motion";Also exported as BluetoothConnectedIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { BluetoothConnected } from "lucide-motion";
<BluetoothConnected size={32} />duration={0.2} stagger={0}duration={1.5} stagger={0.4}easing="linear"trigger="mount" repeat={Infinity}The icon's underlying SVG node tree — useful if you need to render or transform it yourself instead of using the component.
[
[
"path",
{
"d": "m7 7 10 10-5 5V2l5 5L7 17"
}
],
[
"line",
{
"x1": "18",
"x2": "21",
"y1": "12",
"y2": "12"
}
],
[
"line",
{
"x1": "3",
"x2": "6",
"y1": "12",
"y2": "12"
}
]
]