Skip to content
+

Badge

The Badge component generates a small label that is attached to its child element.

Introduction

A badge is a small descriptor for UI elements. It typically sits on or near an element and indicates the status of that element by displaying a number, icon, or other short set of characters.

The Badge component creates a badge that is applied to its child element.

5

Component

import { Badge } from '@mui/base/Badge';

The Badge wraps around the UI element that it's attached to.

Anatomy

The Badge component is composed of a root <span> that houses the element that the Badge is attached to, followed by a <span> slot to represent the Badge itself:

<span class="BaseBadge-root">
  <!-- the element the badge is attached to is nested here -->
  <span class="BaseBadge-badge">badge content</span>
</span>

Custom structure

Use the slots prop to override the root or any other interior slot:

<Badge slots={{ root: 'div', badge: 'div' }} />

Use the slotProps prop to pass custom props to internal slots. The following code snippet applies a CSS class called my-badge to the badge slot:

<Badge slotProps={{ badge: { className: 'my-badge' } }} />

Usage with TypeScript

In TypeScript, you can specify the custom component type used in the slots.root as a generic parameter of the unstyled component. This way, you can safely provide the custom root's props directly on the component:

<Badge<typeof CustomComponent> slots={{ root: CustomComponent }} customProp />

The same applies for props specific to custom primitive elements:

<Badge<'img'> slots={{ root: 'img' }} src="badge.png" />

Hook

import { useBadge } from '@mui/base/useBadge';

The useBadge hook lets you apply the functionality of a Badge to a fully custom component. It returns props to be placed on the custom component, along with fields representing the component's internal state.

Hooks do not support slot props, but they do support customization props.

Customization

Badge content

The badgeContent prop defines the content that's displayed inside the Badge. When this content is a number, there are additional props you can use for further customization—see the Numerical Badges section below.

The following demo shows how to create and style a typical numerical Badge that's attached to a generic box element:

5

Badge visibility

You can control the visibility of a Badge by using the invisible prop. Setting a Badge to invisible does not actually hide it—instead, this prop adds the BaseBadge-invisible class to the Badge, which you can target with styles to hide however you prefer:

1

Numerical Badges

The following props are useful when badgeContent is a number.

The showZero prop

By default, Badges automatically hide when badgeContent={0}. You can override this behavior with the showZero prop:

0
Press Enter to start editing

The max prop

You can use the max prop to set a maximum value for badgeContent. The default is 99.

9999+999+
Press Enter to start editing

Accessibility

Screen readers may not provide users with enough information about a Badge's contents. To make your badge accessible, you must provide a full description with aria-label, as shown in the demo below:

99+
Press Enter to start editing