navigation-off

Animated React component — NavigationOff / NavigationOffIcon

Hover the navigation-off icon above to see the default draw animation.

Import

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.

Quick start

Drop the component into your JSX. The default trigger plays the draw animation on hover.

import { NavigationOff } from "lucide-motion";

<NavigationOff size={32} />
Timing presets · hover to play
Snappy
duration={0.2} stagger={0}
Cinematic
duration={1.5} stagger={0.4}
Linear
easing="linear"
Spinner
trigger="mount" repeat={Infinity}
Tags
locationtravel
Related icons

Raw node data

The icon's underlying SVG node tree — useful if you need to render or transform it yourself instead of using the component.

Show IconNode[]
[
  [
    "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"
    }
  ]
]