Animated React component — Link2Off / Link2OffIcon
Hover the link-2-off icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Link2Off } from "lucide-motion";Also exported as Link2OffIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Link2Off } from "lucide-motion";
<Link2Off 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": "M9 17H7A5 5 0 0 1 7 7"
}
],
[
"path",
{
"d": "M15 7h2a5 5 0 0 1 4 8"
}
],
[
"line",
{
"x1": "8",
"x2": "12",
"y1": "12",
"y2": "12"
}
],
[
"line",
{
"x1": "2",
"x2": "22",
"y1": "2",
"y2": "22"
}
]
]