fix: input component token should work (#47243)

This commit is contained in:
MadCcc 2024-01-30 20:02:56 +08:00 committed by GitHub
parent 2e318e0874
commit b62298851b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -78,8 +78,8 @@ export const genOutlinedStyle = (token: InputToken, extraStyles?: CSSObject): CS
'&-outlined': {
...genBaseOutlinedStyle(token, {
borderColor: token.colorBorder,
hoverBorderColor: token.colorPrimaryHover,
activeBorderColor: token.colorPrimary,
hoverBorderColor: token.hoverBorderColor,
activeBorderColor: token.activeBorderColor,
activeShadow: token.activeShadow,
}),