Animated React component — LassoSelect / LassoSelectIcon
Hover the lasso-select icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { LassoSelect } from "lucide-motion";Also exported as LassoSelectIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { LassoSelect } from "lucide-motion";
<LassoSelect 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 22a5 5 0 0 1-2-4"
}
],
[
"path",
{
"d": "M7 16.93c.96.43 1.96.74 2.99.91"
}
],
[
"path",
{
"d": "M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2"
}
],
[
"path",
{
"d": "M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"
}
],
[
"path",
{
"d": "M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z"
}
]
]