Animated React component — ShieldOff / ShieldOffIcon
Hover the shield-off icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { ShieldOff } from "lucide-motion";Also exported as ShieldOffIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { ShieldOff } from "lucide-motion";
<ShieldOff 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": "m2 2 20 20"
}
],
[
"path",
{
"d": "M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71"
}
],
[
"path",
{
"d": "M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264"
}
]
]