materialuiupgraded
Version:
Material-UI's workspace package
66 lines (46 loc) • 3.92 kB
Markdown
---
filename: /packages/material-ui/src/NativeSelect/NativeSelect.js
title: NativeSelect API
---
<!--- This documentation is automatically generated, do not try to edit it. -->
# NativeSelect
<p class="description">The API documentation of the NativeSelect React component. Learn more about the properties and the CSS customization points.</p>
```js
import NativeSelect from '@material-ui/core/NativeSelect';
```
An alternative to `<Select native />` with a much smaller bundle size footprint.
## Props
| Name | Type | Default | Description |
|:-----|:-----|:--------|:------------|
| <span class="prop-name">children</span> | <span class="prop-type">node | | The option elements to populate the select with. Can be some `<option>` elements. |
| <span class="prop-name">classes</span> | <span class="prop-type">object | | Override or extend the styles applied to the component. See [CSS API](#css-api) below for more details. |
| <span class="prop-name">IconComponent</span> | <span class="prop-type">union: string |<br> func |<br> object<br> | <span class="prop-default">ArrowDropDownIcon</span> | The icon that displays the arrow. |
| <span class="prop-name">input</span> | <span class="prop-type">element | <span class="prop-default"><Input /></span> | An `Input` element; does not have to be a material-ui specific `Input`. |
| <span class="prop-name">inputProps</span> | <span class="prop-type">object | | Attributes applied to the `select` element. |
| <span class="prop-name">onChange</span> | <span class="prop-type">func | | Callback function fired when a menu item is selected.<br><br>**Signature:**<br>`function(event: object) => void`<br>*event:* The event source of the callback. You can pull out the new value by accessing `event.target.value`. |
| <span class="prop-name">value</span> | <span class="prop-type">union: string |<br> number |<br> bool<br> | | The input value. |
| <span class="prop-name">variant</span> | <span class="prop-type">enum: 'standard' |<br> 'outlined' |<br> 'filled'<br> | | The variant to use. |
Any other properties supplied will be spread to the root element ([Input](/api/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 |
|:-----|:------------|
| <span class="prop-name">root</span> | Styles applied to the `Input` component `root` class.
| <span class="prop-name">select</span> | Styles applied to the `Input` component `select` class.
| <span class="prop-name">filled</span> | Styles applied to the `Input` component if `variant="filled"`.
| <span class="prop-name">outlined</span> | Styles applied to the `Input` component if `variant="outlined"`.
| <span class="prop-name">selectMenu</span> | Styles applied to the `Input` component `selectMenu` class.
| <span class="prop-name">disabled</span> | Styles applied to the `Input` component `disabled` class.
| <span class="prop-name">icon</span> | Styles applied to the `Input` component `icon` class.
Have a look at [overriding with classes](/customization/overrides/#overriding-with-classes) section
and the [implementation of the component](https://github.com/mui-org/material-ui/tree/master/packages/material-ui/src/NativeSelect/NativeSelect.js)
for more detail.
If using the `overrides` key of the theme as documented
[here](/customization/themes/#customizing-all-instances-of-a-component-type),
you need to use the following style sheet name: `MuiNativeSelect`.
## Inheritance
The properties of the [Input](/api/input/) component are also available.
You can take advantage of this behavior to [target nested components](/guides/api/#spread).
## Demos
- [Selects](/demos/selects/)