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">
|
React.ComponentProps<"input">
|
||||||
>(({ className, ...props }, ref) => (
|
>(({ className, ...props }, ref) => (
|
||||||
<Input
|
<Input
|
||||||
className={cn(
|
className={cn("w-full flex-1 rounded-s-none rounded-e-md", className)}
|
||||||
"w-full flex-1 rounded-s-none rounded-e-md text-foreground",
|
|
||||||
className,
|
|
||||||
)}
|
|
||||||
{...props}
|
{...props}
|
||||||
ref={ref}
|
ref={ref}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue