Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
26 lines
2.2 KiB
XML
26 lines
2.2 KiB
XML
export default function AwardIcon({ className = 'h-[15px] w-[10px]' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 10 15"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M3.25336 3.81088C3.87839 3.81088 4.41789 3.39599 4.60364 2.80546C4.73175 2.39818 5.26825 2.39818 5.39636 2.80546C5.58211 3.396 6.12161 3.81088 6.74664 3.81088C6.94002 3.81088 7.08433 3.92981 7.143 4.11634C7.20203 4.30401 7.15381 4.50118 6.98625 4.62693C6.49069 4.99886 6.29086 5.64927 6.47584 6.23738C6.54414 6.4545 6.46241 6.64042 6.3191 6.74797C6.17813 6.85377 6.0016 6.86935 5.83987 6.74797C5.3402 6.37296 4.6598 6.37296 4.16013 6.74797C3.9984 6.86935 3.82187 6.85377 3.6809 6.74797C3.53759 6.64042 3.45586 6.4545 3.52416 6.23738C3.70914 5.64927 3.50931 4.99886 3.01375 4.62693C2.84619 4.50118 2.79797 4.30401 2.857 4.11634C2.91567 3.92981 3.05998 3.81088 3.25336 3.81088Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
clipRule="evenodd"
|
|
d="M5 10C7.76142 10 10 7.76142 10 5C10 2.23858 7.76142 0 5 0C2.23858 0 0 2.23858 0 5C0 7.76142 2.23858 10 5 10ZM6.35028 2.50541C5.92862 1.16486 4.07138 1.16486 3.64972 2.50541C3.5896 2.69654 3.42396 2.81088 3.25336 2.81088C1.84732 2.81088 1.3386 4.62002 2.41348 5.42673C2.5616 5.5379 2.63111 5.74378 2.57023 5.93733C2.36364 6.59412 2.62861 7.20852 3.08064 7.54778C3.53501 7.88878 4.20245 7.96651 4.76039 7.54777C4.9044 7.43969 5.0956 7.43969 5.23961 7.54778C5.79755 7.96651 6.46499 7.88878 6.91936 7.54778C7.37139 7.20852 7.63636 6.59412 7.42977 5.93733C7.36889 5.74378 7.4384 5.5379 7.58651 5.42673C8.6614 4.62002 8.15268 2.81088 6.74664 2.81088C6.57604 2.81088 6.4104 2.69654 6.35028 2.50541Z"
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
/>
|
|
<path
|
|
d="M5 11C6.53671 11 7.93849 10.4223 9 9.47221V12.5858C9 13.6286 9 14.15 8.66735 14.2988C8.33469 14.4476 7.92759 14.1082 7.11338 13.4296L6.48752 12.9079C5.77769 12.3163 5.42277 12.0204 5 12.0204C4.57723 12.0204 4.22231 12.3163 3.51248 12.9079L2.88662 13.4296C2.07241 14.1082 1.66531 14.4476 1.33265 14.2988C1 14.15 1 13.6286 1 12.5858V9.47221C2.06151 10.4223 3.46329 11 5 11Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|