Animated React component — Helicopter / HelicopterIcon
Hover the helicopter icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Helicopter } from "lucide-motion";Also exported as HelicopterIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Helicopter } from "lucide-motion";
<Helicopter 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": "M11 17v4"
}
],
[
"path",
{
"d": "M14 3v8a2 2 0 0 0 2 2h5.865"
}
],
[
"path",
{
"d": "M17 17v4"
}
],
[
"path",
{
"d": "M18 17a4 4 0 0 0 4-4 8 6 0 0 0-8-6 6 5 0 0 0-6 5v3a2 2 0 0 0 2 2z"
}
],
[
"path",
{
"d": "M2 10v5"
}
],
[
"path",
{
"d": "M6 3h16"
}
],
[
"path",
{
"d": "M7 21h14"
}
],
[
"path",
{
"d": "M8 13H2"
}
]
]