Skip to main content
About Project Overview Contributing Getting Started Installation Usage Themes Customizing Frameworks React Vue Angular GitHub Light Dark System

Badge

<terra-badge> | TerraBadge
Since 1.0 stable

Badges are used to draw attention and display statuses or counts.

Badge
<terra-badge>Badge</terra-badge>
import TerraBadge from '@nasa-terra/components/dist/react/badge';

const App = () => <TerraBadge>Badge</TerraBadge>;

Examples

Variants

Set the variant attribute to change the badge’s variant.

Primary Success Neutral Warning Danger
<terra-badge variant="primary">Primary</terra-badge>
<terra-badge variant="success">Success</terra-badge>
<terra-badge variant="neutral">Neutral</terra-badge>
<terra-badge variant="warning">Warning</terra-badge>
<terra-badge variant="danger">Danger</terra-badge>
import TerraBadge from '@nasa-terra/components/dist/react/badge';

const App = () => (
  <>
    <TerraBadge variant="primary">Primary</TerraBadge>
    <TerraBadge variant="success">Success</TerraBadge>
    <TerraBadge variant="neutral">Neutral</TerraBadge>
    <TerraBadge variant="warning">Warning</TerraBadge>
    <TerraBadge variant="danger">Danger</TerraBadge>
  </>
);

Pill Badges

Use the pill attribute to give badges rounded edges.

Primary Success Neutral Warning Danger
<terra-badge variant="primary" pill>Primary</terra-badge>
<terra-badge variant="success" pill>Success</terra-badge>
<terra-badge variant="neutral" pill>Neutral</terra-badge>
<terra-badge variant="warning" pill>Warning</terra-badge>
<terra-badge variant="danger" pill>Danger</terra-badge>
import TerraBadge from '@nasa-terra/components/dist/react/badge';

const App = () => (
  <>
    <TerraBadge variant="primary" pill>
      Primary
    </TerraBadge>
    <TerraBadge variant="success" pill>
      Success
    </TerraBadge>
    <TerraBadge variant="neutral" pill>
      Neutral
    </TerraBadge>
    <TerraBadge variant="warning" pill>
      Warning
    </TerraBadge>
    <TerraBadge variant="danger" pill>
      Danger
    </TerraBadge>
  </>
);

Pulsating Badges

Use the pulse attribute to draw attention to the badge with a subtle animation.

1 1 1 1 1
<div class="badge-pulse">
  <terra-badge variant="primary" pill pulse>1</terra-badge>
  <terra-badge variant="success" pill pulse>1</terra-badge>
  <terra-badge variant="neutral" pill pulse>1</terra-badge>
  <terra-badge variant="warning" pill pulse>1</terra-badge>
  <terra-badge variant="danger" pill pulse>1</terra-badge>
</div>

<style>
  .badge-pulse terra-badge:not(:last-of-type) {
    margin-right: 1rem;
  }
</style>
import TerraBadge from '@nasa-terra/components/dist/react/badge';

const css = `
  .badge-pulse terra-badge:not(:last-of-type) {
    margin-right: 1rem;
  }
`;

const App = () => (
  <>
    <div className="badge-pulse">
      <TerraBadge variant="primary" pill pulse>
        1
      </TerraBadge>
      <TerraBadge variant="success" pill pulse>
        1
      </TerraBadge>
      <TerraBadge variant="neutral" pill pulse>
        1
      </TerraBadge>
      <TerraBadge variant="warning" pill pulse>
        1
      </TerraBadge>
      <TerraBadge variant="danger" pill pulse>
        1
      </TerraBadge>
    </div>

    <style>{css}</style>
  </>
);

With Buttons

One of the most common use cases for badges is attaching them to buttons. To make this easier, badges will be automatically positioned at the top-right when they’re a child of a button.

Requests 30 Warnings 8 Errors 6
<terra-button>
  Requests
  <terra-badge pill>30</terra-badge>
</terra-button>

<terra-button style="margin-inline-start: 1rem;">
  Warnings
  <terra-badge variant="warning" pill>8</terra-badge>
</terra-button>

<terra-button style="margin-inline-start: 1rem;">
  Errors
  <terra-badge variant="danger" pill>6</terra-badge>
</terra-button>
import TerraBadge from '@nasa-terra/components/dist/react/badge';
import TerraButton from '@nasa-terra/components/dist/react/button';

const App = () => (
  <>
    <TerraButton>
      Requests
      <TerraBadge pill>30</TerraBadge>
    </TerraButton>

    <TerraButton style={{ marginInlineStart: '1rem' }}>
      Warnings
      <TerraBadge variant="warning" pill>
        8
      </TerraBadge>
    </TerraButton>

    <TerraButton style={{ marginInlineStart: '1rem' }}>
      Errors
      <TerraBadge variant="danger" pill>
        6
      </TerraBadge>
    </TerraButton>
  </>
);

With Menu Items

When including badges in menu items, use the suffix slot to make sure they’re aligned correctly.

Messages Comments 4 Replies 12
<terra-menu style="max-width: 240px;">
  <terra-menu-label>Messages</terra-menu-label>
  <terra-menu-item>Comments <terra-badge slot="suffix" variant="neutral" pill>4</terra-badge></terra-menu-item>
  <terra-menu-item>Replies <terra-badge slot="suffix" variant="neutral" pill>12</terra-badge></terra-menu-item>
</terra-menu>
import TerraBadge from '@nasa-terra/components/dist/react/badge';
import TerraButton from '@nasa-terra/components/dist/react/button';
import TerraMenu from '@nasa-terra/components/dist/react/menu';
import TerraMenuItem from '@nasa-terra/components/dist/react/menu-item';
import TerraMenuLabel from '@nasa-terra/components/dist/react/menu-label';

const App = () => (
  <TerraMenu
    style={{
      maxWidth: '240px',
      border: 'solid 1px var(--terra-panel-border-color)',
      borderRadius: 'var(--terra-border-radius-medium)'
    }}
  >
    <TerraMenuLabel>Messages</TerraMenuLabel>
    <TerraMenuItem>
      Comments
      <TerraBadge slot="suffix" variant="neutral" pill>
        4
      </TerraBadge>
    </TerraMenuItem>
    <TerraMenuItem>
      Replies
      <TerraBadge slot="suffix" variant="neutral" pill>
        12
      </TerraBadge>
    </TerraMenuItem>
  </TerraMenu>
);

Importing

If you’re using the autoloader or the traditional loader, you can ignore this section. Otherwise, feel free to use any of the following snippets to cherry pick this component.

Script Import Bundler React

To import this component from the CDN using a script tag:

<script type="module" src="https://cdn.jsdelivr.net/npm/@nasa-terra/components@0.0.138/cdn/components/badge/badge.js"></script>

To import this component from the CDN using a JavaScript import:

import 'https://cdn.jsdelivr.net/npm/@nasa-terra/components@0.0.138/cdn/components/badge/badge.js';

To import this component using a bundler:

import '@nasa-terra/components/dist/components/badge/badge.js';

To import this component as a React component:

import TerraBadge from '@nasa-terra/components/dist/react/badge';

Slots

Name Description
(default) The badge’s content.

Learn more about using slots.

Properties

Name Description Reflects Type Default
variant The badge’s theme variant. 'primary' | 'success' | 'neutral' | 'warning' | 'danger' 'primary'
pill Draws a pill-style badge with rounded edges. boolean false
pulse Makes the badge pulsate to draw attention. boolean false
updateComplete A read-only promise that resolves when the component has finished updating.

Learn more about attributes and properties.

Parts

Name Description
base The component’s base wrapper.

Learn more about customizing CSS parts.