feat: simplify InputComponent styling by removing unnecessary text color class
This commit is contained in:
parent
5822dcbf47
commit
fd60f33bd5
1 changed files with 1 additions and 4 deletions
|
|
@ -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}
|
||||
/>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue