microscope

Animated React component — Microscope / MicroscopeIcon

Hover the microscope icon above to see the default draw animation.

Import

Tree-shakable named import — only the icons you reference end up in your bundle.

import { Microscope } from "lucide-motion";

Also exported as MicroscopeIcon for the Lucide-suffix naming convention.

Quick start

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

import { Microscope } from "lucide-motion";

<Microscope 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
medicaleducationscienceimagingresearch
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": "M6 18h8"
    }
  ],
  [
    "path",
    {
      "d": "M3 22h18"
    }
  ],
  [
    "path",
    {
      "d": "M14 22a7 7 0 1 0 0-14h-1"
    }
  ],
  [
    "path",
    {
      "d": "M9 14h2"
    }
  ],
  [
    "path",
    {
      "d": "M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z"
    }
  ],
  [
    "path",
    {
      "d": "M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"
    }
  ]
]