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

41 lines
2.0 KiB
XML

export default function ClockIcon({ className = 'size-6' }) {
return (
<svg
className={className}
fill="none"
viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg"
>
<g clipPath="url(#clip0_904_5326)">
<path
d="M3.97869 1.22395C4.19432 1.05144 4.22928 0.736798 4.05678 0.521167C3.88427 0.305536 3.56962 0.270575 3.35399 0.44308L1.68733 1.77641C1.4717 1.94892 1.43674 2.26356 1.60924 2.4792C1.78174 2.69483 2.09639 2.72979 2.31202 2.55728L3.97869 1.22395Z"
fill="currentColor"
/>
<path
d="M12.6454 0.44308C12.4297 0.270575 12.1151 0.305536 11.9426 0.521167C11.7701 0.736798 11.805 1.05144 12.0207 1.22395L13.6873 2.55728C13.903 2.72979 14.2176 2.69483 14.3901 2.4792C14.5626 2.26356 14.5277 1.94892 14.312 1.77641L12.6454 0.44308Z"
fill="currentColor"
/>
<path
d="M8.49968 5.50018C8.49968 5.22404 8.27582 5.00018 7.99968 5.00018C7.72353 5.00018 7.49968 5.22404 7.49968 5.50018V8.30408C7.49968 8.5166 7.41848 8.7211 7.27268 8.87574L6.30254 9.90473C6.11311 10.1057 6.12242 10.4221 6.32334 10.6115C6.52427 10.801 6.84071 10.7916 7.03014 10.5907L8.00029 9.56173C8.32103 9.22153 8.49968 8.77164 8.49968 8.30408V5.50018Z"
fill="currentColor"
/>
<path
clipRule="evenodd"
d="M7.99967 1.00018C4.04163 1.00018 0.833008 4.20881 0.833008 8.16685C0.833008 12.1249 4.04163 15.3335 7.99967 15.3335C11.9577 15.3335 15.1663 12.1249 15.1663 8.16685C15.1663 4.20881 11.9577 1.00018 7.99967 1.00018ZM1.83301 8.16685C1.83301 4.76109 4.59392 2.00018 7.99967 2.00018C11.4054 2.00018 14.1663 4.76109 14.1663 8.16685C14.1663 11.5726 11.4054 14.3335 7.99967 14.3335C4.59392 14.3335 1.83301 11.5726 1.83301 8.16685Z"
fill="currentColor"
fillRule="evenodd"
/>
</g>
<defs>
<clipPath id="clip0_904_5326">
<rect
fill="white"
height="16"
width="16"
/>
</clipPath>
</defs>
</svg>
)
}