terminal-chat-ui
Version:
Shared UI components for terminal-based chat interfaces using Theater actors
9 lines (8 loc) • 365 B
TypeScript
/**
* SimpleInput - basic single-line input (from git-agent style)
*/
import type { SimpleInputProps } from '../types/ui.js';
/**
* Simple, lightweight input component for quick interactions
*/
export declare function SimpleInput({ placeholder, onSubmit, disabled, value: controlledValue, onChange }: SimpleInputProps): import("react/jsx-runtime").JSX.Element;