Animated React component — SendHorizontal / SendHorizontalIcon
Hover the send-horizontal icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { SendHorizontal } from "lucide-motion";Also exported as SendHorizontalIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { SendHorizontal } from "lucide-motion";
<SendHorizontal 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": "M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z"
}
],
[
"path",
{
"d": "M6 12h16"
}
]
]