Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
16 lines
1.1 KiB
XML
16 lines
1.1 KiB
XML
export default function ChevronRightIcon({ className = 'size-6' }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 12 24"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M0 22.4771C0.000350104 22.0794 0.158615 21.6981 0.44 21.4171L8.112 13.7451C8.34422 13.5129 8.52843 13.2373 8.6541 12.9339C8.77978 12.6306 8.84447 12.3054 8.84447 11.9771C8.84447 11.6487 8.77978 11.3236 8.6541 11.0202C8.52843 10.7169 8.34422 10.4412 8.112 10.2091L0.45 2.54207C0.176763 2.25916 0.0255712 1.88026 0.0289888 1.48697C0.0324065 1.09367 0.19016 0.717452 0.468272 0.43934C0.746384 0.161228 1.1226 0.00347433 1.5159 5.67039e-05C1.90919 -0.00336093 2.2881 0.147831 2.571 0.421068L10.233 8.08207C11.2632 9.11433 11.8418 10.5132 11.8418 11.9716C11.8418 13.43 11.2632 14.8288 10.233 15.8611L2.561 23.5331C2.35152 23.7427 2.08464 23.8856 1.79405 23.9437C1.50345 24.0017 1.20216 23.9725 0.928188 23.8595C0.654219 23.7465 0.419851 23.5549 0.254658 23.3089C0.0894659 23.0629 0.000852297 22.7734 0 22.4771Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|