From 3dfe239bdb60b6a14a093ed3aea632c9ae9c7632 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 4 Jan 2025 22:20:18 +0800 Subject: [PATCH] fix: feat(time-picker): add 'tiny' size option to Size type --- src/time-picker/src/interface.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/time-picker/src/interface.ts b/src/time-picker/src/interface.ts index 3608332d27f..24ee2708260 100644 --- a/src/time-picker/src/interface.ts +++ b/src/time-picker/src/interface.ts @@ -53,7 +53,7 @@ export type IsSecondDisabled = ( hour: number | null ) => boolean -export type Size = 'small' | 'medium' | 'large' +export type Size = 'tiny' | 'small' | 'medium' | 'large' export interface TimePickerInst { focus: () => void