Native Select

A styled wrapper around the browser's native select element. Ideal for mobile-friendly forms where native OS pickers are preferred.

Basic

<NativeSelect>
  <option value="">Choose a color</option>
  <option value="red">Red</option>
  <option value="green">Green</option>
  <option value="blue">Blue</option>
</NativeSelect>

Disabled

<NativeSelect disabled>
  <option value="">Disabled</option>
</NativeSelect>

API Reference

PropTypeDefaultDescription
classNamestringAdditional CSS classes to apply to the select element.
disabledbooleanfalseWhen true, prevents interaction with the select.