export type StatusIndicatorStatus =
  'offline' |
  'online' |
  'away' |
  'do-not-disturb' |
  'busy' |
  'unknown' |
  'error' |
  'success' |
  'warning' |
  'in-progress' |
  'information' |
  'discovery' |
  'planet';

export type StatusIndicatorSize = 'sm' | 'md' | 'lg';
