import type { UiSeverity } from "../types"; export interface StatusBadgeProps { label: string; severity?: UiSeverity; } export function StatusBadge({ label, severity = "neutral" }: StatusBadgeProps) { return ( {label} ); }