@justinechang39/maki
Version:
AI-powered CLI agent for file operations, CSV manipulation, todo management, and web content fetching using OpenRouter
11 lines (10 loc) • 502 B
JavaScript
import React from 'react';
import { Box, Text } from 'ink';
export const ProcessingIndicator = React.memo(({ isProcessing }) => {
if (!isProcessing)
return null;
return (React.createElement(Box, { paddingY: 1 },
React.createElement(Box, { borderStyle: "round", borderColor: "yellow", paddingX: 2, paddingY: 1 },
React.createElement(Text, { color: "yellow", bold: true }, "processing your request..."))));
});
ProcessingIndicator.displayName = 'ProcessingIndicator';