Skip to content

Button API

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

Import

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

Component name

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

Props

Props of the ButtonBase component are also available.

NameTypeDefaultDescription
childrennode
The content of the component.
classesobject
Override or extend the styles applied to the component. See CSS API below for more details.
color'inherit'
| 'primary'
| 'secondary'
| 'success'
| 'error'
| 'info'
| 'warning'
| string
'primary'
The color of the component. It supports those theme colors that make sense for this component.
componentelementType
The component used for the root node. Either a string to use a HTML element or a component.
disabledboolfalse
If true, the component is disabled.
disableElevationboolfalse
If true, no elevation is used.
disableFocusRippleboolfalse
If true, the keyboard focus ripple is disabled.
disableRippleboolfalse
If true, the ripple effect is disabled.
⚠️ Without a ripple there is no styling for :focus-visible by default. Be sure to highlight the element by applying separate styles with the .Mui-focusVisible class.
endIconnode
Element placed after the children.
fullWidthboolfalse
If true, the button will take up the full width of its container.
hrefstring
The URL to link to when the button is clicked. If defined, an a element will be used as the root node.
size'small'
| 'medium'
| 'large'
| string
'medium'
The size of the component. small is equivalent to the dense button styling.
startIconnode
Element placed before the children.
sxfunc
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.
variant'contained'
| 'outlined'
| 'text'
| string
'text'
The variant to use.

The ref is forwarded to the root element.

Inheritance

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

CSS

Rule nameGlobal classDescription
root.MuiButton-rootStyles applied to the root element.
text.MuiButton-textStyles applied to the root element if variant="text".
textInherit.MuiButton-textInheritStyles applied to the root element if variant="text" and color="inherit".
textPrimary.MuiButton-textPrimaryStyles applied to the root element if variant="text" and color="primary".
textSecondary.MuiButton-textSecondaryStyles applied to the root element if variant="text" and color="secondary".
outlined.MuiButton-outlinedStyles applied to the root element if variant="outlined".
outlinedInherit.MuiButton-outlinedInheritStyles applied to the root element if variant="outlined" and color="inherit".
outlinedPrimary.MuiButton-outlinedPrimaryStyles applied to the root element if variant="outlined" and color="primary".
outlinedSecondary.MuiButton-outlinedSecondaryStyles applied to the root element if variant="outlined" and color="secondary".
contained.MuiButton-containedStyles applied to the root element if variant="contained".
containedInherit.MuiButton-containedInheritStyles applied to the root element if variant="contained" and color="inherit".
containedPrimary.MuiButton-containedPrimaryStyles applied to the root element if variant="contained" and color="primary".
containedSecondary.MuiButton-containedSecondaryStyles applied to the root element if variant="contained" and color="secondary".
disableElevation.MuiButton-disableElevationStyles applied to the root element if disableElevation={true}.
focusVisible.Mui-focusVisibleState class applied to the ButtonBase root element if the button is keyboard focused.
disabled.Mui-disabledState class applied to the root element if disabled={true}.
colorInherit.MuiButton-colorInheritStyles applied to the root element if color="inherit".
textSizeSmall.MuiButton-textSizeSmallStyles applied to the root element if size="small" and variant="text".
textSizeMedium.MuiButton-textSizeMediumStyles applied to the root element if size="medium" and variant="text".
textSizeLarge.MuiButton-textSizeLargeStyles applied to the root element if size="large" and variant="text".
outlinedSizeSmall.MuiButton-outlinedSizeSmallStyles applied to the root element if size="small" and variant="outlined".
outlinedSizeMedium.MuiButton-outlinedSizeMediumStyles applied to the root element if size="medium" and variant="outlined".
outlinedSizeLarge.MuiButton-outlinedSizeLargeStyles applied to the root element if size="large" and variant="outlined".
containedSizeSmall.MuiButton-containedSizeSmallStyles applied to the root element if size="small" and variant="contained".
containedSizeMedium.MuiButton-containedSizeMediumStyles applied to the root element if size="small" and variant="contained".
containedSizeLarge.MuiButton-containedSizeLargeStyles applied to the root element if size="large" and variant="contained".
sizeSmall.MuiButton-sizeSmallStyles applied to the root element if size="small".
sizeMedium.MuiButton-sizeMediumStyles applied to the root element if size="medium".
sizeLarge.MuiButton-sizeLargeStyles applied to the root element if size="large".
fullWidth.MuiButton-fullWidthStyles applied to the root element if fullWidth={true}.
startIcon.MuiButton-startIconStyles applied to the startIcon element if supplied.
endIcon.MuiButton-endIconStyles applied to the endIcon element if supplied.
iconSizeSmall.MuiButton-iconSizeSmallStyles applied to the icon element if supplied and size="small".
iconSizeMedium.MuiButton-iconSizeMediumStyles applied to the icon element if supplied and size="medium".
iconSizeLarge.MuiButton-iconSizeLargeStyles applied to the icon element if supplied and size="large".

You can override the style of the component using one of these customization options:

Demos