Animated React component — SportShoe / SportShoeIcon
Hover the sport-shoe icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { SportShoe } from "lucide-motion";Also exported as SportShoeIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { SportShoe } from "lucide-motion";
<SportShoe 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": "m15 10.42 4.8-5.07"
}
],
[
"path",
{
"d": "M19 18h3"
}
],
[
"path",
{
"d": "M9.5 22 21.414 9.415A2 2 0 0 0 21.2 6.4l-5.61-4.208A1 1 0 0 0 14 3v2a2 2 0 0 1-1.394 1.906L8.677 8.053A1 1 0 0 0 8 9c-.155 6.393-2.082 9-4 9a2 2 0 0 0 0 4h14"
}
]
]