27 lines
879 B
JavaScript
27 lines
879 B
JavaScript
function LocationP() {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
>
|
|
<path
|
|
d="M11.9999 13.4304C13.723 13.4304 15.1199 12.0336 15.1199 10.3104C15.1199 8.5873 13.723 7.19043 11.9999 7.19043C10.2768 7.19043 8.87988 8.5873 8.87988 10.3104C8.87988 12.0336 10.2768 13.4304 11.9999 13.4304Z"
|
|
className="stroke-[#7E7E7E] dark:stroke-[#A1A1A1]"
|
|
stroke="#7E7E7E"
|
|
strokeWidth="1.5"
|
|
/>
|
|
<path
|
|
d="M3.61995 8.49C5.58995 -0.169998 18.42 -0.159997 20.38 8.5C21.53 13.58 18.37 17.88 15.6 20.54C13.59 22.48 10.41 22.48 8.38995 20.54C5.62995 17.88 2.46995 13.57 3.61995 8.49Z"
|
|
className="stroke-[#7E7E7E] dark:stroke-[#A1A1A1]"
|
|
stroke="#7E7E7E"
|
|
strokeWidth="1.5"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default LocationP;
|