Inline status indicator with text and color.
import { StatusIndicator } from 'nikcli-tui';
new StatusIndicator({ parent: screen, status: 'success', text: 'OK' });
npm run tsx:core-gallery
npm i nikcli-tui
new StatusIndicator({ parent: screen, top: 1, left: 2, status: 'success', text: 'OK' });
const st = new StatusIndicator({ parent: screen, top: 1, left: 2, status: 'running', text: 'Working' }); setTimeout(() => st.setStatus('success', 'Done'), 1500);