diff --git a/components/date-picker/style/index.ts b/components/date-picker/style/index.ts index 132fbdb436..51ce8576f3 100644 --- a/components/date-picker/style/index.ts +++ b/components/date-picker/style/index.ts @@ -157,6 +157,7 @@ const genPickerStyle: GenerateStyle = (token) => { // Size '&-large': { ...genPickerPadding(token.paddingBlockLG, token.paddingInlineLG), + borderRadius: token.borderRadiusLG, [`${componentCls}-input > input`]: { fontSize: inputFontSizeLG ?? fontSizeLG, lineHeight: lineHeightLG, @@ -165,6 +166,7 @@ const genPickerStyle: GenerateStyle = (token) => { '&-small': { ...genPickerPadding(token.paddingBlockSM, token.paddingInlineSM), + borderRadius: token.borderRadiusSM, [`${componentCls}-input > input`]: { fontSize: inputFontSizeSM ?? fontSizeSM, },