UNPKG

@sinchsmb/ui-kit

Version:

UI kit for SinchSMB frontend

10 lines (9 loc) 239 B
/** Base {@link SelectField} option */ export interface SelectOption { /** Text that will be shown in dropdown item */ label: string; /** Unique value of the option */ value: string; /** Disabled state */ disabled?: boolean; }