admin/components/icons/AddDocumentIcon.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

22 lines
1.6 KiB
XML

export default function AddDocumentIcon({ className = 'size-6' }: { className?: string }) {
return (
<svg
className={className}
fill="none"
viewBox="0 0 18 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
clipRule="evenodd"
d="M18 11C18 14.7497 18 16.6246 17.0451 17.9389C16.7367 18.3634 16.3634 18.7367 15.9389 19.0451C14.6246 20 12.7497 20 9 20C5.25027 20 3.3754 20 2.06107 19.0451C1.6366 18.7367 1.26331 18.3634 0.954914 17.9389C0 16.6246 0 14.7497 0 11V9C0 8.16106 0 7.41596 0.0106945 6.75L0.0808201 6.75C0.932837 6.75007 1.45182 6.75011 1.8995 6.67921C4.35988 6.28952 6.28952 4.35988 6.67921 1.8995C6.75011 1.45182 6.75007 0.932837 6.75 0.0808201L6.75 0.0106945C7.41596 0 8.16106 0 9 0C12.7497 0 14.6246 0 15.9389 0.954914C16.3634 1.26331 16.7367 1.6366 17.0451 2.06107C18 3.3754 18 5.25027 18 9V11ZM8.25 8C8.25 7.58579 8.58579 7.25 9 7.25C9.41421 7.25 9.75 7.58579 9.75 8V10.25H12C12.4142 10.25 12.75 10.5858 12.75 11C12.75 11.4142 12.4142 11.75 12 11.75H9.75V14C9.75 14.4142 9.41421 14.75 9 14.75C8.58579 14.75 8.25 14.4142 8.25 14V11.75H6C5.58579 11.75 5.25 11.4142 5.25 11C5.25 10.5858 5.58579 10.25 6 10.25H8.25V8Z"
fill="currentColor"
fillRule="evenodd"
/>
<path
d="M1.66485 5.19768C1.35646 5.24652 0.975676 5.24987 0.0653362 5.25C0.159744 3.81037 0.390566 2.83783 0.954914 2.06107C1.26331 1.6366 1.6366 1.26331 2.06107 0.954914C2.83783 0.390566 3.81037 0.159744 5.25 0.0653362C5.24987 0.975676 5.24652 1.35645 5.19768 1.66485C4.90965 3.48339 3.48339 4.90965 1.66485 5.19768Z"
fill="currentColor"
/>
</svg>
)
}