Animated React component — Baby / BabyIcon
Hover the baby icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Baby } from "lucide-motion";Also exported as BabyIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Baby } from "lucide-motion";
<Baby 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": "M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5"
}
],
[
"path",
{
"d": "M15 12h.01"
}
],
[
"path",
{
"d": "M19.38 6.813A9 9 0 0 1 20.8 10.2a2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1"
}
],
[
"path",
{
"d": "M9 12h.01"
}
]
]