spb/satelliteindex
Public
TypeScript 66.5%
Python 30.9%
JavaScript 1.4%
CSS 0.7%
1import { cn } from '@/lib/cn';23/** Honest empty state: when a source/API is unavailable we say so instead of inventing numbers (CLAUDE.md §151). */4export function Unavailable({ what = 'Data', className, compact = false }: { what?: string; className?: string; compact?: boolean }) {5 return (6 <div className={cn('rounded-lg border border-dashed border-rule-strong text-ink-3', compact ? 'px-3 py-2 text-xs' : 'px-5 py-8 text-center text-sm', className)} role="status">7 {what} unavailable8 </div>9 );10}11