import styles from './StatusBadge.module.css'; export type Status = 'healthy' | 'warning' | 'critical' | 'unknown'; interface StatusBadgeProps { status: Status; label?: string; } export function StatusBadge({ status, label }: StatusBadgeProps) { return ( {label && {label}} ); }