MapPinIcon.jsx

 1export function MapPinIcon(props) {
 2  return (
 3    <svg viewBox="0 0 20 20" aria-hidden="true" {...props}>
 4      <path
 5        strokeWidth="0"
 6        fillRule="evenodd"
 7        clipRule="evenodd"
 8        d="M10 2.5A5.5 5.5 0 0 0 4.5 8c0 3.038 5.5 9.5 5.5 9.5s5.5-6.462 5.5-9.5A5.5 5.5 0 0 0 10 2.5Zm0 7a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"
 9      />
10      <path
11        fill="none"
12        strokeLinecap="round"
13        strokeLinejoin="round"
14        d="M4.5 8a5.5 5.5 0 1 1 11 0c0 3.038-5.5 9.5-5.5 9.5S4.5 11.038 4.5 8Z"
15      />
16      <circle cx="10" cy="8" r="1.5" fill="none" />
17    </svg>
18  )
19}