Skip to content

MenuItem API

API documentation for the React MenuItem component. Learn about the available props, and the CSS API.

Import

import MenuItem from '@material-ui/core/MenuItem';
// or
import { MenuItem } from '@material-ui/core';
You can learn about the difference by reading this guide on minimizing bundle size.

Component name

The name MuiMenuItem can be used when providing default props or style overrides in the theme.

Props

NameTypeDefaultDescription
childrennodeMenu item contents.
classesobjectOverride or extend the styles applied to the component. See CSS API below for more details.
componentelementTypeThe component used for the root node. Either a string to use a HTML element or a component.
denseboolfalseIf true, compact vertical padding designed for keyboard and mouse input is used. The prop defaults to the value inherited from the parent List component.
disableGuttersboolfalseIf true, the left and right padding is removed.
ListItemClassesobjectclasses prop applied to the ListItem element.

The ref is forwarded to the root element.
Any other props supplied will be provided to the root element (ListItem).

Inheritance

While not explicitly documented above, the props of the ListItem component are also available on MenuItem. You can take advantage of this to target nested components.

CSS

Rule nameGlobal classDescription
root.MuiMenuItem-rootStyles applied to the root element.
gutters.MuiMenuItem-guttersStyles applied to the root element unless disableGutters={true}.
selected.Mui-selectedStyles applied to the root element if selected={true}.
dense.MuiMenuItem-denseStyles applied to the root element if dense.

You can override the style of the component using one of these customization options: If that isn't sufficient, you can check the implementation of the component for more detail.

Demos