admin/components/icons/CloseLinearIcon.tsx
alisaza e1eaf5eff5 feat: initial ghabilee-admin backoffice app
Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js
app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
2026-09-05 13:12:59 +03:30

19 lines
472 B
TypeScript

export default function CloseLinearIcon({ className = 'size-4' }: { className?: string }) {
return (
<svg
aria-hidden
className={className}
fill="none"
viewBox="0 0 10.8334 10.8333"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0.75 0.750002L10.0833 10.0833M0.750018 10.0833L5.41668 5.41667L10.0834 0.75"
stroke="currentColor"
strokeLinecap="round"
strokeWidth="1.5"
/>
</svg>
)
}