Animated React component — UmbrellaOff / UmbrellaOffIcon
Hover the umbrella-off icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { UmbrellaOff } from "lucide-motion";Also exported as UmbrellaOffIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { UmbrellaOff } from "lucide-motion";
<UmbrellaOff 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 13v7a2 2 0 0 0 4 0"
}
],
[
"path",
{
"d": "M12 2v2"
}
],
[
"path",
{
"d": "M18.656 13h2.336a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-12.07-7.51"
}
],
[
"path",
{
"d": "m2 2 20 20"
}
],
[
"path",
{
"d": "M5.961 5.957a10.28 10.28 0 0 0-3.922 5.769A1 1 0 0 0 3 13h10"
}
]
]