Skip to content

Commit

Permalink
fix: feat(time-picker): add 'tiny' size option to Size type
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Jan 4, 2025
1 parent 1e116fc commit 3dfe239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/time-picker/src/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3dfe239

Please sign in to comment.