@nanocollective/nanocoder
Version:
A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter
10 lines • 561 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { Box, Text } from 'ink';
import Spinner from 'ink-spinner';
import { memo } from 'react';
import { useTheme } from '../hooks/useTheme.js';
export default memo(function CancellingIndicator() {
const { colors } = useTheme();
return (_jsx(Box, { flexDirection: "column", marginBottom: 1, children: _jsxs(Box, { children: [_jsx(Spinner, { type: "dots" }), _jsx(Text, { color: colors.secondary, children: " Cancelling..." })] }) }));
});
//# sourceMappingURL=cancelling-indicator.js.map