Animated React component — Drumstick / DrumstickIcon
Hover the drumstick icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Drumstick } from "lucide-motion";Also exported as DrumstickIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Drumstick } from "lucide-motion";
<Drumstick 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": "M15.4 15.63a7.875 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23"
}
],
[
"path",
{
"d": "m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59"
}
]
]