Animated React component — Images / ImagesIcon
Hover the images icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Images } from "lucide-motion";Also exported as ImagesIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Images } from "lucide-motion";
<Images 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": "m22 11-1.296-1.296a2.4 2.4 0 0 0-3.408 0L11 16"
}
],
[
"path",
{
"d": "M4 8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2"
}
],
[
"circle",
{
"cx": "13",
"cy": "7",
"r": "1",
"fill": "currentColor"
}
],
[
"rect",
{
"x": "8",
"y": "2",
"width": "14",
"height": "14",
"rx": "2"
}
]
]