Animated React component — Webhook / WebhookIcon
Hover the webhook icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Webhook } from "lucide-motion";Also exported as WebhookIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Webhook } from "lucide-motion";
<Webhook 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": "M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2"
}
],
[
"path",
{
"d": "m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06"
}
],
[
"path",
{
"d": "m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8"
}
]
]