Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
18 lines
1.4 KiB
XML
18 lines
1.4 KiB
XML
export default function TicketStarIcon({ className = 'h-[17.5px] w-[21.5px]' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 18 18"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
clipRule="evenodd"
|
|
d="M4.83333 2.4375C2.68172 2.4375 0.9375 4.18172 0.9375 6.33333C0.9375 6.95713 1.29524 7.52566 1.8576 7.79559L2.22313 7.97105C3.0864 8.38542 3.0864 9.61458 2.22313 10.029L1.8576 10.2044C1.29524 10.4743 0.9375 11.0429 0.9375 11.6667C0.9375 13.8183 2.68172 15.5625 4.83333 15.5625H13.1667C15.3183 15.5625 17.0625 13.8183 17.0625 11.6667C17.0625 11.0429 16.7048 10.4743 16.1424 10.2044L15.7769 10.029C14.9136 9.61458 14.9136 8.38542 15.7769 7.97105L16.1424 7.79559C16.7048 7.52566 17.0625 6.95713 17.0625 6.33333C17.0625 4.18173 15.3183 2.4375 13.1667 2.4375H4.83333ZM11.3904 6.60961C11.6101 6.82928 11.6101 7.18544 11.3904 7.40511L7.14775 11.6477C6.92808 11.8674 6.57192 11.8674 6.35225 11.6477C6.13258 11.4281 6.13258 11.0719 6.35225 10.8523L10.5949 6.60961C10.8146 6.38994 11.1707 6.38994 11.3904 6.60961ZM6.75 7.5C6.33579 7.5 6 7.16421 6 6.75C6 6.33579 6.33579 6 6.75 6C7.16421 6 7.5 6.33579 7.5 6.75C7.5 7.16421 7.16421 7.5 6.75 7.5ZM11.25 12C10.8358 12 10.5 11.6642 10.5 11.25C10.5 10.8358 10.8358 10.5 11.25 10.5C11.6642 10.5 12 10.8358 12 11.25C12 11.6642 11.6642 12 11.25 12Z"
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|