import { Box, Text } from 'ink'; /** * Reused across the empty/READY states of pane 2 (Categories), pane * 3 (Findings), and pane 4 (Detail) when the audit returns zero * findings. Replaces the drab "(no findings)" placeholder with * something that actually feels like a win. * * `compact` strips the body and renders only the headline — used in * the smaller Categories/Findings panes where vertical space is at a * premium. */ export function InboxZeroCelebration({ compact = false }: { compact?: boolean }) { return ( 🎉 Everything is up-to-date! {!compact && ( No drift detected across any of the audit categories. Press R to re-run the audit, or q to quit. )} ); }