Select
Select<
T>(__namedParameters):Element
Defined in: src/components/controls/Select/Select.tsx:103
Select component for choosing single values from a dropdown list.
Supports searchable mode, grouped options, keyboard navigation, clearable state, and multiple visual variants.
Type Parameters
Section titled “Type Parameters”T extends string = string
Parameters
Section titled “Parameters”__namedParameters
Section titled “__namedParameters”SelectProps<T>
Returns
Section titled “Returns”Element
Example
Section titled “Example”<Select label="Blend Mode" options={[ { value: 'normal', label: 'Normal' }, { value: 'multiply', label: 'Multiply' }, { value: 'screen', label: 'Screen' }, ]} value={blendMode} onChange={setBlendMode}/>