# Select

Render the shared select control wrapper. The polite way of asking a user to pick one thing from a long list.

## Notes

- 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

```astro
<Select id="category" options={categoryOptions} placeholder="Choose a category" />
```
