Components
Classes
Types
No results found.
If this is a bug, please report it.
Scroll
Open
Describes props for the Select component.
interface SelectProps {
label?: string;
labelPosition?: "default" | "on-input";
helpText?: string;
placeholderText?: string;
options: Option[];
value: string;
onChange: (event: React.ChangeEvent<HTMLSelectElement>) => void;
name?: string;
children: React.ReactNode;
}
Components that use this type.
Types with similar roles.