Animated React component — HandMetal / HandMetalIcon
Hover the hand-metal icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { HandMetal } from "lucide-motion";Also exported as HandMetalIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { HandMetal } from "lucide-motion";
<HandMetal 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": "M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4"
}
],
[
"path",
{
"d": "M14 11V9a2 2 0 1 0-4 0v2"
}
],
[
"path",
{
"d": "M10 10.5V5a2 2 0 1 0-4 0v9"
}
],
[
"path",
{
"d": "m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5"
}
]
]