Animated React component — ChefHat / ChefHatIcon
Hover the chef-hat icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { ChefHat } from "lucide-motion";Also exported as ChefHatIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { ChefHat } from "lucide-motion";
<ChefHat 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 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z"
}
],
[
"path",
{
"d": "M6 17h12"
}
]
]