Animated React component — Recycle / RecycleIcon
Hover the recycle icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Recycle } from "lucide-motion";Also exported as RecycleIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Recycle } from "lucide-motion";
<Recycle 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": "M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5"
}
],
[
"path",
{
"d": "M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12"
}
],
[
"path",
{
"d": "m14 16-3 3 3 3"
}
],
[
"path",
{
"d": "M8.293 13.596 7.196 9.5 3.1 10.598"
}
],
[
"path",
{
"d": "m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843"
}
],
[
"path",
{
"d": "m13.378 9.633 4.096 1.098 1.097-4.096"
}
]
]