MenuPreviewRadioItem API
API reference docs for the React MenuPreviewRadioItem component. Learn about the props, CSS, and other APIs of this exported module.
Demos
Import
import MenuPreviewRadioItem from '@mui/material/MenuPreviewRadioItem';| Name | Type | Default | Description |
|---|---|---|---|
| value* | any | - | Value of the radio item. |
| children | node | - | The content of the component. |
| classes | object | - | Override or extend the styles applied to the component. See CSS classes API below for more details. |
| className | string | - | CSS class applied to the element. |
| closeOnClick | bool | false | Whether to close the menu when the item is clicked. |
| component | elementType | - | The component used for the root node. |
| dense | bool | false | If |
| disabled | bool | false | Whether the component should ignore user interaction. |
| disableGutters | bool | false | If |
| divider | bool | false | If |
| label | string | - | Overrides the text label to use when the item is matched during keyboard text navigation. |
| nativeButton | bool | - | Whether the component is rendered as a native button. |
| selected | bool | false | If |
| slotProps | { root?: func | object } | - | The props used for each slot inside. |
| slots | { root?: elementType } | - | The components used for each slot inside. |
| style | object | - | Styles applied to the root element. |
| sx | Array<func | object | bool> | func | object | - | The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details. |
| Slot name | Class name | Default component | Description |
|---|---|---|---|
| root | 'div' | The component that renders the root. |
Source code
If you did not find the information in this page, consider having a look at the implementation of the component for more detail.