Animated React component — Drill / DrillIcon
Hover the drill icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Drill } from "lucide-motion";Also exported as DrillIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Drill } from "lucide-motion";
<Drill 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 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z"
}
],
[
"path",
{
"d": "M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8"
}
],
[
"path",
{
"d": "M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3"
}
],
[
"path",
{
"d": "M18 6h4"
}
],
[
"path",
{
"d": "m5 10-2 8"
}
],
[
"path",
{
"d": "m7 18 2-8"
}
]
]