Animated React component — GlobeLock / GlobeLockIcon
Hover the globe-lock icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { GlobeLock } from "lucide-motion";Also exported as GlobeLockIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { GlobeLock } from "lucide-motion";
<GlobeLock 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": "M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13"
}
],
[
"path",
{
"d": "M2 12h8.5"
}
],
[
"path",
{
"d": "M20 6V4a2 2 0 1 0-4 0v2"
}
],
[
"rect",
{
"width": "8",
"height": "5",
"x": "14",
"y": "6",
"rx": "1"
}
]
]