UNPKG

dmux

Version:

Tmux pane manager with AI agent integration for parallel development workflows

9 lines 425 B
import React from 'react'; import { Box, Text } from 'ink'; const RunningIndicator = () => { return (React.createElement(Box, { borderStyle: "single", borderColor: "blue", paddingX: 1, marginTop: 1 }, React.createElement(Text, { color: "blue" }, React.createElement(Text, { bold: true }, "\u25B6 Running command...")))); }; export default RunningIndicator; //# sourceMappingURL=RunningIndicator.js.map