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

26 lines
1.4 KiB
XML

export default function ClockIcon({ className = 'size-6' }) {
return (
<svg
className={className}
fill="none"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M5.32025 2.14494C5.57061 1.94466 5.6112 1.57934 5.41092 1.32898C5.21063 1.07862 4.84531 1.03803 4.59495 1.23832L2.65987 2.78638C2.40952 2.98667 2.36893 3.35198 2.56921 3.60234C2.7695 3.8527 3.13482 3.89329 3.38517 3.693L5.32025 2.14494Z"
fill="currentColor"
/>
<path
d="M15.3827 1.23832C15.1323 1.03803 14.767 1.07862 14.5667 1.32898C14.3664 1.57934 14.407 1.94466 14.6574 2.14494L16.5924 3.693C16.8428 3.89329 17.2081 3.8527 17.4084 3.60234C17.6087 3.35198 17.5681 2.98667 17.3177 2.78638L15.3827 1.23832Z"
fill="currentColor"
/>
<path
clipRule="evenodd"
d="M9.98881 1.69163C5.39334 1.69163 1.66797 5.417 1.66797 10.0125C1.66797 14.6079 5.39334 18.3333 9.98881 18.3333C14.5843 18.3333 18.3096 14.6079 18.3096 10.0125C18.3096 5.417 14.5843 1.69163 9.98881 1.69163ZM10.5693 6.14231C10.5693 5.8217 10.3094 5.56179 9.98881 5.56179C9.66819 5.56179 9.40829 5.8217 9.40829 6.14231V10.0125C9.40836 10.5643 10.0755 10.8407 10.4657 10.4505L12.0413 8.8749C12.268 8.64819 12.268 8.28062 12.0413 8.05392C11.8146 7.82721 11.447 7.82721 11.2203 8.05392L10.5693 8.70488V6.14231Z"
fill="currentColor"
fillRule="evenodd"
/>
</svg>
)
}