UNPKG

dmux

Version:

Tmux pane manager with AI agent integration for parallel development workflows

10 lines 511 B
import React from 'react'; import { Box, Text } from 'ink'; import TextInput from 'ink-text-input'; const StyledTextInput = ({ value, onChange, onSubmit, placeholder = 'Type your message...' }) => { return (React.createElement(Box, null, React.createElement(Text, null, '> '), React.createElement(TextInput, { value: value, onChange: onChange, onSubmit: onSubmit, placeholder: placeholder, showCursor: true }))); }; export default StyledTextInput; //# sourceMappingURL=StyledTextInput.js.map