SelectProps
Home > @backstage/ui > SelectProps
Signature:
export interface SelectProps extends AriaSelectProps<{
name: string;
value: string;
}>, Omit<FieldLabelProps, 'htmlFor' | 'id'>
Extends: AriaSelectProps<{ name: string; value: string; }>, Omit<FieldLabelProps, 'htmlFor' | 'id'>
Properties
|
Property |
Modifiers |
Type |
Description |
|---|---|---|---|
|
ReactNode |
(Optional) An icon to render before the input | ||
|
string | |||
|
Array<{ value: string; label: string; disabled?: boolean; }> |
(Optional) The options of the select field | ||
|
'small' | 'medium' | Partial<Record<Breakpoint, 'small' | 'medium'>> |
(Optional) The size of the select field | ||
|
string |