ButtonUnstyled API
Import
import ButtonUnstyled from '@mui/base/ButtonUnstyled';
// or
import { ButtonUnstyled } from '@mui/base';
The foundation for building custom-styled buttons.
Props
Props of the native component are also available.
Name | Type | Default | Description |
---|---|---|---|
action | func | { current?: { focusVisible: func } } | A ref for imperative actions. It currently only supports focusVisible() action. | |
component | elementType | The component used for the root node. Either a string to use a HTML element or a component. | |
disabled | bool | false | If true , the component is disabled. |
focusableWhenDisabled | bool | false | If true , allows a disabled button to receive focus. |
slotProps | { root?: func | object } | {} | The props used for each slot inside the Button. |
slots | { root?: elementType } | {} | The components used for each slot inside the Button. Either a string to use a HTML element or a component. |
The
ref
is forwarded to the root element.