Animated React component — Stone / StoneIcon
Hover the stone icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Stone } from "lucide-motion";Also exported as StoneIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Stone } from "lucide-motion";
<Stone 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": "M11.264 2.205A4 4 0 0 0 6.42 4.211l-4 8a4 4 0 0 0 1.359 5.117l6 4a4 4 0 0 0 4.438 0l6-4a4 4 0 0 0 1.576-4.592l-2-6a4 4 0 0 0-2.53-2.53z"
}
],
[
"path",
{
"d": "M11.99 22 14 12l7.822 3.184"
}
],
[
"path",
{
"d": "M14 12 8.47 2.302"
}
]
]