flower

Animated React component — Flower / FlowerIcon

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

Import

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

import { Flower } from "lucide-motion";

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

Quick start

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

import { Flower } from "lucide-motion";

<Flower 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
sustainabilitynatureplantspring
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[]
[
  [
    "circle",
    {
      "cx": "12",
      "cy": "12",
      "r": "3"
    }
  ],
  [
    "path",
    {
      "d": "M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5"
    }
  ],
  [
    "path",
    {
      "d": "M12 7.5V9"
    }
  ],
  [
    "path",
    {
      "d": "M7.5 12H9"
    }
  ],
  [
    "path",
    {
      "d": "M16.5 12H15"
    }
  ],
  [
    "path",
    {
      "d": "M12 16.5V15"
    }
  ],
  [
    "path",
    {
      "d": "m8 8 1.88 1.88"
    }
  ],
  [
    "path",
    {
      "d": "M14.12 9.88 16 8"
    }
  ],
  [
    "path",
    {
      "d": "m8 16 1.88-1.88"
    }
  ],
  [
    "path",
    {
      "d": "M14.12 14.12 16 16"
    }
  ]
]