When to use
Use when the user must choose exactly one option from a known list.
Find components, patterns, tokens, and docs
Documentation
Selects constrain input to a known set and prevent typos.
Prefer select when there are 4+ options and the user does not need to type a custom value.
Appearance is not enough. This is the contract for when the control earns a place in the product.
Use when the user must choose exactly one option from a known list.
Use radio when there are 2–4 options that should stay visible. Use combobox for searchable lists.
Stops invalid values from entering the system.
Must be keyboard operable, announce the selected value, and include a label.
<Select
variant="primary"
size="medium"
>
Workspace
</Select>