Skip to content

Checkbox API

API reference docs for the React Checkbox component. Learn about the props, CSS, and other APIs of this exported module.

Component demos

Import

import Checkbox from '@mui/material/Checkbox';
// or
import { Checkbox } from '@mui/material';
Learn about the difference by reading this guide on minimizing bundle size.

Props

Props of the ButtonBase component are also available.

checked

If true, the component is checked.

Type:bool


checkedIcon

The icon to display when the component is checked.

Type:node

Default:<CheckBoxIcon />


classes

Override or extend the styles applied to the component.

See CSS API below for more details.

Type:object


color

The color of the component. It supports both default and custom theme colors, which can be added as shown in the palette customization guide.

Type:'default'
| 'primary'
| 'secondary'
| 'error'
| 'info'
| 'success'
| 'warning'
| string

Default:'primary'


defaultChecked

The default checked state. Use when the component is not controlled.

Type:bool


disabled

If true, the component is disabled.

Type:bool

Default:false


disableRipple

If true, the ripple effect is disabled.

Type:bool

Default:false


icon

The icon to display when the component is unchecked.

Type:node

Default:<CheckBoxOutlineBlankIcon />


id

The id of the input element.

Type:string


indeterminate

If true, the component appears indeterminate. This does not set the native input element to indeterminate due to inconsistent behavior across browsers. However, we set a data-indeterminate attribute on the input.

Type:bool

Default:false


indeterminateIcon

The icon to display when the component is indeterminate.

Type:node

Default:<IndeterminateCheckBoxIcon />


inputProps

Attributes applied to the input element.

Type:object


inputRef

Pass a ref to the input element.

Type:ref


onChange

Callback fired when the state is changed.

Type:func

Signature:
function(event: React.ChangeEvent) => void
  • event The event source of the callback. You can pull out the new checked state by accessing event.target.checked (boolean).

required

If true, the input element is required.

Type:bool

Default:false


size

The size of the component. small is equivalent to the dense checkbox styling.

Type:'medium'
| 'small'
| string

Default:'medium'


sx

The system prop that allows defining system overrides as well as additional CSS styles.

See the `sx` page for more details.

Type:Array<func
| object
| bool>
| func
| object


value

The value of the component. The DOM API casts this to a string. The browser uses "on" as the default value.

Type:any


The ref is forwarded to the root element.

Inheritance

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


Theme default props

You can use MuiCheckbox to change the default props of this component with the theme.


CSS classes

These class names are useful for styling with CSS. They are applied to the component's slots when specific states are triggered.

.Mui-checkedSTATE

State class applied to the root element if checked={true}.


.Mui-disabledSTATE

State class applied to the root element if disabled={true}.


.MuiCheckbox-colorPrimary

State class applied to the root element if color="primary".

Rule name:colorPrimary


.MuiCheckbox-colorSecondary

State class applied to the root element if color="secondary".

Rule name:colorSecondary


.MuiCheckbox-indeterminate

State class applied to the root element if indeterminate={true}.

Rule name:indeterminate


.MuiCheckbox-root

Class name applied to the root element.

Rule name:root


.MuiCheckbox-sizeMedium

State class applied to the root element if size="medium".

Rule name:sizeMedium


.MuiCheckbox-sizeSmall

State class applied to the root element if size="small".

Rule name:sizeSmall



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