Animated React component — Birdhouse / BirdhouseIcon
Hover the birdhouse icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Birdhouse } from "lucide-motion";Also exported as BirdhouseIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Birdhouse } from "lucide-motion";
<Birdhouse 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": "M12 18v4"
}
],
[
"path",
{
"d": "m17 18 1.956-11.468"
}
],
[
"path",
{
"d": "m3 8 7.82-5.615a2 2 0 0 1 2.36 0L21 8"
}
],
[
"path",
{
"d": "M4 18h16"
}
],
[
"path",
{
"d": "M7 18 5.044 6.532"
}
],
[
"circle",
{
"cx": "12",
"cy": "10",
"r": "2"
}
]
]