Skip to content
Entangle UI v0.13.0

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.

T extends string = string

SelectProps<T>

Element

<Select
label="Blend Mode"
options={[
{ value: 'normal', label: 'Normal' },
{ value: 'multiply', label: 'Multiply' },
{ value: 'screen', label: 'Screen' },
]}
value={blendMode}
onChange={setBlendMode}
/>