Animated React component — Binoculars / BinocularsIcon
Hover the binoculars icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Binoculars } from "lucide-motion";Also exported as BinocularsIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Binoculars } from "lucide-motion";
<Binoculars 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": "M10 10h4"
}
],
[
"path",
{
"d": "M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3"
}
],
[
"path",
{
"d": "M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z"
}
],
[
"path",
{
"d": "M 22 16 L 2 16"
}
],
[
"path",
{
"d": "M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z"
}
],
[
"path",
{
"d": "M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3"
}
]
]