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

27 lines
2.6 KiB
XML

export default function FileCheckIcon({ className = 'size-6' }) {
return (
<svg
className={className}
fill="none"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<g clipPath="url(#clip0_410_1974)">
<path
d="M19.95 5.53651L16.464 2.05051C15.8156 1.39859 15.0443 0.881737 14.1948 0.529856C13.3453 0.177976 12.4345 -0.00194228 11.515 0.000513077H7C5.67441 0.00210094 4.40356 0.529395 3.46622 1.46673C2.52888 2.40407 2.00159 3.67492 2 5.00051V19.0005C2.00159 20.3261 2.52888 21.597 3.46622 22.5343C4.40356 23.4716 5.67441 23.9989 7 24.0005H17C18.3256 23.9989 19.5964 23.4716 20.5338 22.5343C21.4711 21.597 21.9984 20.3261 22 19.0005V10.4855C22.0025 9.56603 21.8225 8.65519 21.4707 7.8057C21.1188 6.95621 20.6019 6.18494 19.95 5.53651ZM18.536 6.95051C18.841 7.26492 19.1036 7.61792 19.317 8.00051H15C14.7348 8.00051 14.4804 7.89516 14.2929 7.70762C14.1054 7.52008 14 7.26573 14 7.00051V2.68351C14.3826 2.8969 14.7356 3.15946 15.05 3.46451L18.536 6.95051ZM20 19.0005C20 19.7962 19.6839 20.5592 19.1213 21.1218C18.5587 21.6844 17.7956 22.0005 17 22.0005H7C6.20435 22.0005 5.44129 21.6844 4.87868 21.1218C4.31607 20.5592 4 19.7962 4 19.0005V5.00051C4 4.20486 4.31607 3.4418 4.87868 2.87919C5.44129 2.31658 6.20435 2.00051 7 2.00051H11.515C11.68 2.00051 11.838 2.03251 12 2.04751V7.00051C12 7.79616 12.3161 8.55923 12.8787 9.12183C13.4413 9.68444 14.2044 10.0005 15 10.0005H19.953C19.968 10.1625 20 10.3205 20 10.4855V19.0005ZM16.724 13.3115C16.9066 13.5036 17.0055 13.7603 16.9989 14.0253C16.9924 14.2902 16.8809 14.5417 16.689 14.7245L13.1 18.1385C12.5358 18.6938 11.7751 19.0036 10.9835 19.0004C10.1919 18.9972 9.43367 18.6813 8.874 18.1215L7.334 16.7475C7.13588 16.5709 7.01605 16.3228 7.00086 16.0578C6.99334 15.9266 7.01173 15.7952 7.055 15.6711C7.09826 15.547 7.16554 15.4326 7.253 15.3345C7.34046 15.2364 7.44639 15.1565 7.56473 15.0993C7.68307 15.0422 7.81151 15.0089 7.94272 15.0014C8.20771 14.9862 8.46788 15.0769 8.666 15.2535L10.251 16.6675C10.3417 16.7694 10.4524 16.8517 10.5761 16.9092C10.6998 16.9667 10.834 16.9984 10.9704 17.0021C11.1067 17.0059 11.2425 16.9817 11.3691 16.931C11.4958 16.8803 11.6108 16.8043 11.707 16.7075L15.307 13.2765C15.4022 13.1855 15.5144 13.1142 15.6373 13.0667C15.7601 13.0191 15.8911 12.9963 16.0228 12.9996C16.1544 13.0029 16.2842 13.0321 16.4045 13.0856C16.5248 13.1391 16.6334 13.2159 16.724 13.3115Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_410_1974">
<rect
fill="white"
height="24"
width="24"
/>
</clipPath>
</defs>
</svg>
)
}