globe-lock

Animated React component — GlobeLock / GlobeLockIcon

Hover the globe-lock icon above to see the default draw animation.

Import

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.

Quick start

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

import { GlobeLock } from "lucide-motion";

<GlobeLock 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
vpnprivateprivacynetworkworldbrowsersecurityencryptionprotectionconnection
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": "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"
    }
  ]
]