Animated React component — MapPinSearch / MapPinSearchIcon
Hover the map-pin-search icon above to see the default draw animation.
Tree-shakable named import — only the icons you reference end up in your bundle.
import { MapPinSearch } from "lucide-motion";Also exported as MapPinSearchIcon for the Lucide-suffix naming convention.
Drop the component into your JSX. The default trigger plays the draw animation on hover.
import { MapPinSearch } from "lucide-motion";
<MapPinSearch 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": "M 12.248 21.969 a 1 1 0 0 1 -0.849 -0.17 C 9.539 20.193 4 14.993 4 10 a 8 8 0 0 1 16 0 C 20 10.42 19.961 10.841 19.888 11.262"
}
],
[
"path",
{
"d": "m22 22-1.88-1.88"
}
],
[
"circle",
{
"cx": "12",
"cy": "10",
"r": "3"
}
],
[
"circle",
{
"cx": "18",
"cy": "18",
"r": "3"
}
]
]