Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
18 lines
1.0 KiB
XML
18 lines
1.0 KiB
XML
export default function CloseCircleIcon({ className = 'size-6' }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
height="14"
|
|
viewBox="0 0 14 14"
|
|
width="14"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M6.66667 0C2.99333 0 0 2.99333 0 6.66667C0 10.34 2.99333 13.3333 6.66667 13.3333C10.34 13.3333 13.3333 10.34 13.3333 6.66667C13.3333 2.99333 10.34 0 6.66667 0ZM8.90667 8.2C9.1 8.39333 9.1 8.71333 8.90667 8.90667C8.80667 9.00667 8.68 9.05333 8.55333 9.05333C8.42667 9.05333 8.3 9.00667 8.2 8.90667L6.66667 7.37333L5.13333 8.90667C5.03333 9.00667 4.90667 9.05333 4.78 9.05333C4.65333 9.05333 4.52667 9.00667 4.42667 8.90667C4.23333 8.71333 4.23333 8.39333 4.42667 8.2L5.96 6.66667L4.42667 5.13333C4.23333 4.94 4.23333 4.62 4.42667 4.42667C4.62 4.23333 4.94 4.23333 5.13333 4.42667L6.66667 5.96L8.2 4.42667C8.39333 4.23333 8.71333 4.23333 8.90667 4.42667C9.1 4.62 9.1 4.94 8.90667 5.13333L7.37333 6.66667L8.90667 8.2Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|