Animated React component — Beef / BeefIcon
Hover the beef icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Beef } from "lucide-motion";Also exported as BeefIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Beef } from "lucide-motion";
<Beef 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": "M16.4 13.7A6.5 6.5 0 1 0 6.28 6.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3"
}
],
[
"path",
{
"d": "m18.5 6 2.19 4.5a6.48 6.48 0 0 1-2.29 7.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5"
}
],
[
"circle",
{
"cx": "12.5",
"cy": "8.5",
"r": "2.5"
}
]
]