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
blocksLayout
Containers
Non-clickable
Tags
orBadges
Decorative
Avatars
orIcons
π 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/
orstatus/toggle/
tokensState-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
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?