Animated React component — WavesArrowDown / WavesArrowDownIcon
Hover the waves-arrow-down icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { WavesArrowDown } from "lucide-motion";Also exported as WavesArrowDownIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { WavesArrowDown } from "lucide-motion";
<WavesArrowDown 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": "M12 10L12 2"
}
],
[
"path",
{
"d": "M16 6L12 10L8 6"
}
],
[
"path",
{
"d": "M2 15C2.6 15.5 3.2 16 4.5 16C7 16 7 14 9.5 14C12.1 14 11.9 16 14.5 16C17 16 17 14 19.5 14C20.8 14 21.4 14.5 22 15"
}
],
[
"path",
{
"d": "M2 21C2.6 21.5 3.2 22 4.5 22C7 22 7 20 9.5 20C12.1 20 11.9 22 14.5 22C17 22 17 20 19.5 20C20.8 20 21.4 20.5 22 21"
}
]
]