/** Status/label pill. CountBadge (same file) is the small red unread counter used on taskbar icons. */
export interface BadgeProps {
  tone?: 'accent' | 'neutral' | 'danger' | 'success' | 'warning' | 'outline';
  /** Rounded pill (default) vs small radius */
  pill?: boolean;
  children?: React.ReactNode;
  style?: React.CSSProperties;
}
