Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
24 lines
2.4 KiB
XML
24 lines
2.4 KiB
XML
export default function TagIcon({ className = 'size-4' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 16 16"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
clipRule="evenodd"
|
|
d="M9.68769 0.833879C9.05774 0.82137 8.35751 1.04228 7.2079 1.40497L7.05811 1.45222C6.60807 1.59408 6.33116 1.68137 6.07489 1.80634C5.54513 2.06468 5.08208 2.4417 4.72171 2.9081C4.5474 3.13371 4.40579 3.38718 4.17564 3.79912L2.54539 6.71662C2.02627 7.64532 1.70948 8.21205 1.58801 8.76928C1.31962 10.0005 1.67348 11.285 2.53452 12.205C2.92422 12.6215 3.48653 12.946 4.40801 13.4778L4.5825 13.5786C5.50382 14.1107 6.06604 14.4354 6.62151 14.5647C7.84883 14.8503 9.13816 14.5145 10.0702 13.6665C10.4921 13.2827 10.8245 12.725 11.3692 11.8111L13.0807 8.94047C13.3224 8.53518 13.4711 8.2858 13.5793 8.02203C13.803 7.47675 13.898 6.88722 13.8569 6.29927C13.837 6.01485 13.7741 5.73139 13.6719 5.27069L13.638 5.11737C13.3773 3.94044 13.2185 3.22355 12.8926 2.68426C12.2125 1.55848 11.0027 0.859991 9.68769 0.833879ZM7.39825 2.3935C8.69325 1.98517 9.22392 1.82487 9.66784 1.83368C10.6398 1.85298 11.534 2.36925 12.0367 3.20136C12.2663 3.58139 12.3928 4.12112 12.6867 5.44679C12.8005 5.96029 12.8452 6.16776 12.8593 6.36909C12.8897 6.80366 12.8195 7.2394 12.6542 7.64244C12.5775 7.82915 12.47 8.01209 12.2006 8.46385L10.5618 11.2124C9.94905 12.2402 9.69472 12.6562 9.39725 12.9268C8.70833 13.5536 7.75535 13.8018 6.84819 13.5907C6.45648 13.4995 6.03155 13.2605 4.99526 12.6622C3.95897 12.0639 3.53947 11.8154 3.26466 11.5217C2.62824 10.8417 2.36669 9.89229 2.56507 8.98227C2.65073 8.58931 2.8838 8.16107 3.4675 7.11648L5.02844 4.323C5.285 3.86386 5.38963 3.67921 5.51303 3.51951C5.77938 3.17478 6.12164 2.89611 6.51321 2.70516C6.69461 2.6167 6.89663 2.55167 7.39825 2.3935Z"
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
/>
|
|
<path
|
|
clipRule="evenodd"
|
|
d="M7.50449 4.80417C7.04425 5.60132 7.31738 6.62064 8.11453 7.08088C8.91169 7.54111 9.931 7.26799 10.3912 6.47083C10.8515 5.67368 10.5784 4.65436 9.7812 4.19413C8.98404 3.73389 7.96473 4.00701 7.50449 4.80417ZM8.37052 5.30417C8.18642 5.62303 8.29567 6.03076 8.61453 6.21485C8.93339 6.39895 9.34112 6.2897 9.52522 5.97083C9.70931 5.65197 9.60006 5.24425 9.2812 5.06015C8.96234 4.87606 8.55461 4.98531 8.37052 5.30417Z"
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|