NativeSelect

NativeSelect

The API documentation of the NativeSelect React component.

An alternative to <Select native /> with a much smaller dependency graph.

Props

Name Type Default Description
children node The option elements to populate the select with. Can be some &lt;option> elements.
classes object Override or extend the styles applied to the component. See CSS API below for more details.
IconComponent union: string |
 func |
 object
ArrowDropDownIcon The icon that displays the arrow.
input element <Input /> An Input element; does not have to be a material-ui specific Input.
inputProps object Attributes applied to the select element.
onChange func Callback function fired when a menu item is selected.

Signature:
function(event: object) => void
event: The event source of the callback. You can pull out the new value by accessing event.target.value.
value union: string |
 number |
 bool
The input value.

Any other properties supplied will be spread to the root element (Input).

CSS API

You can override all the class names injected by Material-UI thanks to the classes property. This property accepts the following keys:

Name Description
root Styles applied to the Input component root class.
select Styles applied to the Input component select class.
selectMenu Styles applied to the Input component selectMenu class.
disabled Styles applied to the Input component disabled class.
icon Styles applied to the Input component icon class.

Have a look at overriding with classes section and the implementation of the component for more detail.

If using the overrides key of the theme as documented here, you need to use the following style sheet name: MuiNativeSelect.

Inheritance

The properties of the Input component are also available. You can take advantage of this behavior to target nested components.

Demos