Animated React component — Kayak / KayakIcon
Hover the kayak icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Kayak } from "lucide-motion";Also exported as KayakIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Kayak } from "lucide-motion";
<Kayak 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": "M18 17a1 1 0 0 0-1 1v1a2 2 0 1 0 2-2z"
}
],
[
"path",
{
"d": "M20.97 3.61a.45.45 0 0 0-.58-.58C10.2 6.6 6.6 10.2 3.03 20.39a.45.45 0 0 0 .58.58C13.8 17.4 17.4 13.8 20.97 3.61"
}
],
[
"path",
{
"d": "m6.707 6.707 10.586 10.586"
}
],
[
"path",
{
"d": "M7 5a2 2 0 1 0-2 2h1a1 1 0 0 0 1-1z"
}
]
]