Static vs Status

🧩 Static vs. Status Components

In the Universal Design System, components are categorized into Static and Status types to reflect their behavior, interactivity, and role in the user experience.


πŸ“˜ Static Components

Static components are non-interactive UI elements. They do not respond to user input, state changes, or dynamic behavior.

βœ… Use static components when:

  • The content is informational only

  • The component has no hover/focus/active states

  • You are designing layouts, cards, containers, labels, or UI text

🧠 Examples:

  • Static Text blocks

  • Layout Containers

  • Non-clickable Tags or Badges

  • Decorative Avatars or Icons

πŸ”— Use with:

  • semantic/ tokens (e.g., surface/default, content/inverse)

  • text/ styles and accessibility tags

⚠️ Static components should never use tokens from the status/ collection, as they are not interactive.


🎯 Status Components

Status components are interactive or stateful. They reflect behavior like selection, activation, toggles, or priority (e.g., primary CTA).

These components support multiple appearance states (default, hover, focus, active, disabled, visited) and are styled using dynamic status tokens.

βœ… Use status components when:

  • The component is clickable, selectable, or focusable

  • The UI element changes based on interaction

  • It represents a call-to-action, input, or toggleable behavior

🧠 Examples:

  • Buttons (status/priority)

  • Checkboxes, toggles, switches (status/toggle)

  • Interactive Pills or Tabs

  • Select Menus

πŸ”— Use with:

  • status/priority/ or status/toggle/ tokens

  • State-aware variants (hover, focus, etc.)

  • Accessibility roles (e.g., button, checkbox, link)

πŸ’‘ Status components follow strict accessibility rules and token logic to ensure WCAG compliance and predictable behavior across modes.


πŸ”„ Quick Summary

Static Components
Status Components

Behavior

Non-interactive

Interactive / Stateful

Use Case

Layout, info, decoration

CTA, form elements, toggles

Tokens Used

semantic/, text/

status/priority, status/toggle

Accessibility

Informative, semantic tags

Focus, keyboard, ARIA required

Example

Avatar, Card, Label

Button, Checkbox, Tab


πŸ›  Best Practices

  • Don’t style static elements using interactive tokens.

  • Don’t use status components just for looks β€” they’re built for interaction.

  • Make sure to test status variants for contrast and accessibility across light and dark modes.


🧠 Tip: Ask yourself β€” β€œCan this be clicked or toggled?” If yes ➝ Use status. If no ➝ Use static.

Last updated

Was this helpful?