Forms
Select
Render the shared select control wrapper. The polite way of asking a user to pick one thing from a long list.
Curated demo
Reference
Render the shared select control wrapper. The polite way of asking a user to pick one thing from a long list.
- Use Select for longer or denser choice lists.
- Prefer RadioGroup when all options should remain visible.
- Don't use it for a simple Yes/No choice. That's what Switches and Checkboxes are for.
Example snippet
<Select id="category" options={categoryOptions} placeholder="Choose a category" />