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.


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.


Anchor to 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 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

<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>

  • 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?