import { cn } from '@/lib/cn'; /** Honest empty state: when a source/API is unavailable we say so instead of inventing numbers (CLAUDE.md ยง151). */ export function Unavailable({ what = 'Data', className, compact = false }: { what?: string; className?: string; compact?: boolean }) { return (
{what} unavailable
); }