Skip to content

Badge API

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

Import

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

Component name

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

Props

NameTypeDefaultDescription
anchorOrigin{ horizontal: 'left'
| 'right', vertical: 'bottom'
| 'top' }
{ vertical: 'top', horizontal: 'right', }The anchor of the badge.
badgeContentnodeThe content rendered within the badge.
childrennodeThe badge will be added relative to this node.
classesobjectOverride or extend the styles applied to the component. See CSS API below for more details.
color'default'
| 'error'
| 'primary'
| 'secondary'
'default'The color of the component. It supports those theme colors that make sense for this component.
componentelementTypeThe component used for the root node. Either a string to use a HTML element or a component.
invisibleboolfalseIf true, the badge is invisible.
maxnumber99Max count to show.
overlap'circular'
| 'rectangular'
'rectangular'Wrapped shape the badge should overlap.
showZeroboolfalseControls whether the badge is hidden when badgeContent is zero.
variant'dot'
| 'standard'
| string
'standard'The variant to use.

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

CSS

Rule nameGlobal classDescription
root.MuiBadge-rootStyles applied to the root element.
badge.MuiBadge-badgeStyles applied to the badge `span` element.
colorPrimary.MuiBadge-colorPrimaryStyles applied to the root element if color="primary".
colorSecondary.MuiBadge-colorSecondaryStyles applied to the root element if color="secondary".
colorError.MuiBadge-colorErrorStyles applied to the root element if color="error".
dot.MuiBadge-dotStyles applied to the root element if variant="dot".
standard.MuiBadge-standardStyles applied to the root element if variant="standard".
anchorOriginTopRightRectangular.MuiBadge-anchorOriginTopRightRectangularStyles applied to the root element if anchorOrigin={{ 'top', 'right' }} overlap="rectangular".
anchorOriginBottomRightRectangular.MuiBadge-anchorOriginBottomRightRectangularStyles applied to the root element if anchorOrigin={{ 'bottom', 'right' }} overlap="rectangular".
anchorOriginTopLeftRectangular.MuiBadge-anchorOriginTopLeftRectangularStyles applied to the root element if anchorOrigin={{ 'top', 'left' }} overlap="rectangular".
anchorOriginBottomLeftRectangular.MuiBadge-anchorOriginBottomLeftRectangularStyles applied to the root element if anchorOrigin={{ 'bottom', 'left' }} overlap="rectangular".
anchorOriginTopRightCircular.MuiBadge-anchorOriginTopRightCircularStyles applied to the root element if anchorOrigin={{ 'top', 'right' }} overlap="circular".
anchorOriginBottomRightCircular.MuiBadge-anchorOriginBottomRightCircularStyles applied to the root element if anchorOrigin={{ 'bottom', 'right' }} overlap="circular".
anchorOriginTopLeftCircular.MuiBadge-anchorOriginTopLeftCircularStyles applied to the root element if anchorOrigin={{ 'top', 'left' }} overlap="circular".
anchorOriginBottomLeftCircular.MuiBadge-anchorOriginBottomLeftCircularStyles applied to the root element if anchorOrigin={{ 'bottom', 'left' }} overlap="circular".
invisible.MuiBadge-invisiblePseudo-class to the badge `span` element if invisible={true}.

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