Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
18 lines
1.3 KiB
XML
18 lines
1.3 KiB
XML
export default function CloseSquareIcon({ className = 'size-[12px]' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 12 12"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
clipRule="evenodd"
|
|
d="M0.63661 1.37405C0 2.25027 0 3.50018 0 6C0 8.49982 0 9.74973 0.63661 10.626C0.842209 10.9089 1.09107 11.1578 1.37405 11.3634C2.25027 12 3.50018 12 6 12C8.49982 12 9.74973 12 10.626 11.3634C10.9089 11.1578 11.1578 10.9089 11.3634 10.626C12 9.74973 12 8.49982 12 6C12 3.50018 12 2.25027 11.3634 1.37405C11.1578 1.09107 10.9089 0.842209 10.626 0.63661C9.74973 0 8.49982 0 6 0C3.50018 0 2.25027 0 1.37405 0.63661C1.09107 0.842209 0.842209 1.09107 0.63661 1.37405ZM4.93933 4.394C4.74407 4.19873 4.42748 4.19873 4.23222 4.394C4.03696 4.58926 4.03696 4.90584 4.23222 5.1011L5.29288 6.16176L4.23222 7.22242C4.03696 7.41768 4.03696 7.73427 4.23222 7.92953C4.42748 8.12479 4.74407 8.12479 4.93933 7.92953L5.99999 6.86887L7.06065 7.92953C7.25591 8.12479 7.57249 8.12479 7.76776 7.92953C7.96302 7.73427 7.96302 7.41768 7.76776 7.22242L6.7071 6.16176L7.76776 5.1011C7.96302 4.90584 7.96302 4.58926 7.76776 4.394C7.57249 4.19873 7.25591 4.19873 7.06065 4.394L5.99999 5.45466L4.93933 4.394Z"
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|