fix(component): adjust dialog and input style (#4566)

This commit is contained in:
JimmFly
2023-10-12 13:49:39 +08:00
committed by GitHub
parent d05897b724
commit daa976ca62
18 changed files with 141 additions and 133 deletions

View File

@@ -79,7 +79,10 @@ export const Input = forwardRef<HTMLInputElement, InputProps>(function Input(
>
{preFix}
<input
className={clsx(input)}
className={clsx(input, {
large: size === 'large',
'extra-large': size === 'extraLarge',
})}
ref={ref}
disabled={disabled}
style={inputStyle}