Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
18 lines
1.6 KiB
XML
18 lines
1.6 KiB
XML
export default function MapIcon({ className = 'h-[12px] w-[13px]' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 13 12"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
clipRule="evenodd"
|
|
d="M4.5 0C3.69102 0 2.88144 0.255587 2.2 0.766667L0.733333 1.86667C0.271689 2.2129 0 2.75628 0 3.33333V9.08602C0 10.5613 1.68427 11.4035 2.86452 10.5183C3.34915 10.1548 3.92427 9.97312 4.5 9.97312C5.07573 9.97312 5.65086 10.1548 6.13548 10.5183L6.2 10.5667C6.88144 11.0777 7.69102 11.3333 8.5 11.3333C9.30898 11.3333 10.1186 11.0777 10.8 10.5667L12.2667 9.46667C12.7283 9.12043 13 8.57705 13 8V2.24731C13 0.772005 11.3157 -0.0701303 10.1355 0.815054C9.65086 1.17853 9.07573 1.36021 8.5 1.36021C7.92427 1.36021 7.34915 1.17853 6.86452 0.815054L6.8 0.766667C6.11856 0.255587 5.30898 0 4.5 0ZM2.8 1.56667C3.16283 1.29454 3.57448 1.12044 4 1.04433V9.00675C3.38501 9.08987 2.78613 9.32707 2.26452 9.71828C1.74351 10.109 1 9.73728 1 9.08602V3.33333C1 3.07104 1.1235 2.82404 1.33333 2.66667L2.8 1.56667ZM6.73548 9.71828C6.21387 9.32707 5.61499 9.08987 5 9.00675V1.04433C5.42552 1.12044 5.83717 1.29454 6.2 1.56667L6.26452 1.61505C6.78613 2.00627 7.38501 2.24346 8 2.32658V10.289C7.57448 10.2129 7.16284 10.0388 6.8 9.76667L6.73548 9.71828ZM10.2 9.76667C9.83717 10.0388 9.42552 10.2129 9 10.289V2.32658C9.61499 2.24346 10.2139 2.00627 10.7355 1.61505C11.2565 1.2243 12 1.59605 12 2.24731V8C12 8.2623 11.8765 8.50929 11.6667 8.66667L10.2 9.76667Z"
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|