From bc8dd2d36d49ba92038b151538cbdeb12886aaf8 Mon Sep 17 00:00:00 2001 From: Wanpan Date: Wed, 3 Jul 2024 11:49:23 +0800 Subject: [PATCH] fix: Input variant filled activeBorderColor token invalid (#49699) --- components/input/style/variants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/input/style/variants.ts b/components/input/style/variants.ts index 073a378fb9a4..b359422fc3e6 100644 --- a/components/input/style/variants.ts +++ b/components/input/style/variants.ts @@ -261,7 +261,7 @@ export const genFilledStyle = (token: InputToken, extraStyles?: CSSObject): CSSO ...genBaseFilledStyle(token, { bg: token.colorFillTertiary, hoverBg: token.colorFillSecondary, - activeBorderColor: token.colorPrimary, + activeBorderColor: token.activeBorderColor, }), [`&${token.componentCls}-disabled, &[disabled]`]: {