Skip to main content

Badge

The Badge component uses color and text to communicate status information for orders, products, customers, and other business data. Use badges to create visual hierarchy and help merchants quickly identify important information or status changes.

Badges aren't interactive elements. They display information but don't respond to user interactions like clicks or taps.

Use cases

  • Order status: Display status indicators like "Paid," "Pending," or "Refunded" for quick visibility.
  • Inventory states: Show availability like "In Stock," "Low Stock," or "Out of Stock."
  • Customer status: Indicate account status like "VIP," "New Customer," or "Loyalty Member."
  • Labels: Categorize items with labels like "Featured," "Sale," or "New."

Anchor to example-display-status-information-with-a-badgeDisplay status information with a badge

Display status information using a Badge component with customizable tone and content. This example shows a basic badge with a tone property to indicate status through color.

Display status information with a badge

Display status information with a badge

<s-badge tone="neutral">Paid</s-badge>
<s-badge tone="success">Active</s-badge>
<s-badge tone="info">Draft</s-badge>
<s-badge tone="warning">On hold</s-badge>
<s-badge tone="critical">Action required</s-badge>

Configure the following properties on the Badge component.

string

A unique identifier for the element.

"auto" | "neutral" | "info" | "success" | "caution" | "warning" | "critical"
Default: 'auto'

Sets the tone of the Badge, based on the intention of the information being conveyed.

  • Apply appropriate tones: Use success for positive states, critical for urgent issues, warning for attention-needed states, info for neutral information.
  • Keep text brief: Use single words or short phrases. Avoid lengthy descriptions that don't fit the compact design.
  • Position near related content: Place badges next to the items they describe for clear associations.
  • Use for status, not actions: Badges display information only. For interactive elements, use buttons or clickable components.

Very long text content may be truncated or cause layout issues depending on the container and screen size.

Was this page helpful?