feat: simplify InputComponent styling by removing unnecessary text color class

This commit is contained in:
Marco Pedone 2026-03-18 18:21:54 +01:00
parent 5822dcbf47
commit fd60f33bd5

View file

@ -72,10 +72,7 @@ const InputComponent = React.forwardRef<
React.ComponentProps<"input">
>(({ className, ...props }, ref) => (
<Input
className={cn(
"w-full flex-1 rounded-s-none rounded-e-md text-foreground",
className,
)}
className={cn("w-full flex-1 rounded-s-none rounded-e-md", className)}
{...props}
ref={ref}
/>