fix: harden kumo base component styling
This commit is contained in:
@@ -17,12 +17,12 @@ export const Input = React.forwardRef<HTMLInputElement, InputProps>(function Inp
|
||||
{ className, ...props },
|
||||
ref,
|
||||
): React.ReactElement {
|
||||
return <KumoInput ref={ref} className={cn("w-full", className)} {...props} />;
|
||||
return <KumoInput ref={ref} className={cn("teatea-control w-full", className)} {...props} />;
|
||||
});
|
||||
|
||||
export const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(function Textarea(
|
||||
{ className, ...props },
|
||||
ref,
|
||||
): React.ReactElement {
|
||||
return <KumoTextarea ref={ref} className={cn("min-h-24 w-full", className)} {...props} />;
|
||||
return <KumoTextarea ref={ref} className={cn("teatea-control min-h-24 w-full", className)} {...props} />;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user