Animated React component — BeanOff / BeanOffIcon
Hover the bean-off icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { BeanOff } from "lucide-motion";Also exported as BeanOffIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { BeanOff } from "lucide-motion";
<BeanOff 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": "M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1"
}
],
[
"path",
{
"d": "M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66"
}
],
[
"path",
{
"d": "M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04"
}
],
[
"line",
{
"x1": "2",
"x2": "22",
"y1": "2",
"y2": "22"
}
]
]