FIX PR Problems

This commit is contained in:
firewookie
2026-03-10 15:28:46 +05:00
parent fd84df0020
commit 0e3cf30341
7 changed files with 136 additions and 84 deletions

View File

@@ -33,6 +33,30 @@ export const BackIcon = ({ className }: IconProps) => (
</svg>
);
export const ArrowLeftIcon = ({ className }: IconProps) => (
<svg
className={cn('h-5 w-5', className)}
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
strokeWidth={2}
>
<path strokeLinecap="round" strokeLinejoin="round" d="M10.5 19.5L3 12m0 0l7.5-7.5M3 12h18" />
</svg>
);
export const ChevronRightIcon = ({ className }: IconProps) => (
<svg
className={cn('h-5 w-5', className)}
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
strokeWidth={2}
>
<path strokeLinecap="round" strokeLinejoin="round" d="M8.25 4.5l7.5 7.5-7.5 7.5" />
</svg>
);
export const MenuIcon = ({ className }: IconProps) => (
<svg
className={cn('h-5 w-5', className)}