Animated React component — UtensilsCrossed / UtensilsCrossedIcon
Hover the utensils-crossed icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { UtensilsCrossed } from "lucide-motion";Also exported as UtensilsCrossedIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { UtensilsCrossed } from "lucide-motion";
<UtensilsCrossed 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 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8"
}
],
[
"path",
{
"d": "M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7"
}
],
[
"path",
{
"d": "m2.1 21.8 6.4-6.3"
}
],
[
"path",
{
"d": "m19 5-7 7"
}
]
]