Animated React component — Trophy / TrophyIcon
Hover the trophy icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { Trophy } from "lucide-motion";Also exported as TrophyIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { Trophy } from "lucide-motion";
<Trophy 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": "M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978"
}
],
[
"path",
{
"d": "M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978"
}
],
[
"path",
{
"d": "M18 9h1.5a1 1 0 0 0 0-5H18"
}
],
[
"path",
{
"d": "M4 22h16"
}
],
[
"path",
{
"d": "M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z"
}
],
[
"path",
{
"d": "M6 9H4.5a1 1 0 0 1 0-5H6"
}
]
]