import { BusyRing } from "./BusyRing"; export type StatusPillTone = "ok" | "warning" | "error" | "checking" | "muted"; export interface StatusPillProps { tone?: StatusPillTone; children: string; } export function StatusPill({ tone = "muted", children }: StatusPillProps) { return ( {tone === "checking" ? : null} {children} ); }