Animated React component — Ambulance / AmbulanceIcon
Hover the ambulance icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Ambulance } from "lucide-motion";Also exported as AmbulanceIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Ambulance } from "lucide-motion";
<Ambulance 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 10H6"
}
],
[
"path",
{
"d": "M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2"
}
],
[
"path",
{
"d": "M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.923-.641a1 1 0 0 1-.578-.502l-1.539-3.076A1 1 0 0 0 16.382 8H14"
}
],
[
"path",
{
"d": "M8 8v4"
}
],
[
"path",
{
"d": "M9 18h6"
}
],
[
"circle",
{
"cx": "17",
"cy": "18",
"r": "2"
}
],
[
"circle",
{
"cx": "7",
"cy": "18",
"r": "2"
}
]
]