20 lines
537 B
JavaScript
20 lines
537 B
JavaScript
const MapMarkerIcon = ({ className = "h-8 w-8" }) => (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="rgb(0, 174, 239)"
|
|
viewBox="0 0 24 24"
|
|
strokeWidth="1.5"
|
|
stroke="rgb(0, 174, 239)"
|
|
className={className}
|
|
>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M15 10.5a3 3 0 11-6 0 3 3 0 016 0z" />
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25s-7.5-4.108-7.5-11.25a7.5 7.5 0 1115 0z"
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
export default MapMarkerIcon;
|