Animated React component — Microscope / MicroscopeIcon
Hover the microscope icon above to see the default draw animation.
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.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Microscope } from "lucide-motion";
<Microscope 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": "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"
}
]
]