Animated React component — NavigationOff / NavigationOffIcon
Hover the navigation-off icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { NavigationOff } from "lucide-motion";Also exported as NavigationOffIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { NavigationOff } from "lucide-motion";
<NavigationOff 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": "M8.43 8.43 3 11l8 2 2 8 2.57-5.43"
}
],
[
"path",
{
"d": "M17.39 11.73 22 2l-9.73 4.61"
}
],
[
"line",
{
"x1": "2",
"x2": "22",
"y1": "2",
"y2": "22"
}
]
]