forked from crowetic/commerce
21 lines
434 B
TypeScript
21 lines
434 B
TypeScript
const MapPin = ({ ...props }) => {
|
|
return (
|
|
<svg
|
|
viewBox="0 0 24 24"
|
|
width="24"
|
|
height="24"
|
|
stroke="currentColor"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
fill="none"
|
|
shapeRendering="geometricPrecision"
|
|
>
|
|
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z" />
|
|
<circle cx="12" cy="10" r="3" />
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default MapPin
|