Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
20 lines
743 B
XML
20 lines
743 B
XML
export default function MarkerIcon({ className = 'size-6' }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
height="16"
|
|
viewBox="0 0 12 16"
|
|
width="12"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
clipRule="evenodd"
|
|
d="M8.08559 14.0254C9.81791 11.8163 12 8.60694 12 6.45652C12 2.89068 9.31371 0 6 0C2.68629 0 0 2.89068 0 6.45652C0 8.60694 2.18209 11.8163 3.91441 14.0254C4.81818 15.1779 5.27007 15.7541 6 15.7541C6.72993 15.7541 7.18182 15.1779 8.08559 14.0254ZM6 9C4.75736 9 3.75 7.99264 3.75 6.75C3.75 5.50736 4.75736 4.5 6 4.5C7.24264 4.5 8.25 5.50736 8.25 6.75C8.25 7.99264 7.24264 9 6 9Z"
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|