images

Animated React component — Images / ImagesIcon

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

Import

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.

Quick start

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

import { Images } from "lucide-motion";

<Images 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
picturephotomultiplecopygalleryalbumcollectionslideshowshowcase
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": "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"
    }
  ]
]