import type { Kind } from "./status"; export function StatusChip({ kind, label }: { kind: Kind; label: string }) { return {label}; }