Animated React component — Drone / DroneIcon
Hover the drone icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Drone } from "lucide-motion";Also exported as DroneIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Drone } from "lucide-motion";
<Drone 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": "M10 10 7 7"
}
],
[
"path",
{
"d": "m10 14-3 3"
}
],
[
"path",
{
"d": "m14 10 3-3"
}
],
[
"path",
{
"d": "m14 14 3 3"
}
],
[
"path",
{
"d": "M14.205 4.139a4 4 0 1 1 5.439 5.863"
}
],
[
"path",
{
"d": "M19.637 14a4 4 0 1 1-5.432 5.868"
}
],
[
"path",
{
"d": "M4.367 10a4 4 0 1 1 5.438-5.862"
}
],
[
"path",
{
"d": "M9.795 19.862a4 4 0 1 1-5.429-5.873"
}
],
[
"rect",
{
"x": "10",
"y": "8",
"width": "4",
"height": "8",
"rx": "1"
}
]
]