Animated React component — Rose / RoseIcon
Hover the rose icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Rose } from "lucide-motion";Also exported as RoseIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Rose } from "lucide-motion";
<Rose 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": "M17 10h-1a4 4 0 1 1 4-4v.534"
}
],
[
"path",
{
"d": "M17 6h1a4 4 0 0 1 1.42 7.74l-2.29.87a6 6 0 0 1-5.339-10.68l2.069-1.31"
}
],
[
"path",
{
"d": "M4.5 17c2.8-.5 4.4 0 5.5.8s1.8 2.2 2.3 3.7c-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2"
}
],
[
"path",
{
"d": "M9.77 12C4 15 2 22 2 22"
}
],
[
"circle",
{
"cx": "17",
"cy": "8",
"r": "2"
}
]
]