export type Status = 'ok' | 'warn' | 'danger' | 'neutral'; export interface StatusDotProps { status: Status; /** The word. Never omit it: this pack states status is never by colour alone. */ label: string; className?: string; } export function StatusDot({ status, label, className }: StatusDotProps) { return ( ); }