Animated React component — Squirrel / SquirrelIcon
Hover the squirrel icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Squirrel } from "lucide-motion";Also exported as SquirrelIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Squirrel } from "lucide-motion";
<Squirrel 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": "M15.236 22a3 3 0 0 0-2.2-5"
}
],
[
"path",
{
"d": "M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4"
}
],
[
"path",
{
"d": "M18 13h.01"
}
],
[
"path",
{
"d": "M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10"
}
]
]