import React from 'react'; import { Box, Text } from 'ink'; import TextInput from 'ink-text-input'; interface CommandBarProps { value: string; onChange: (v: string) => void; onSubmit: (v: string) => void; secureMode: boolean; } export function CommandBar({ value, onChange, onSubmit, secureMode }: CommandBarProps) { return ( {secureMode ? 'SECURE ▶ ' : 'INSTRUCT ▶ '} ); }