2025-05-18 22:16:57 -07:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
|
import { Box, Text } from 'ink';
|
|
|
|
|
import { Colors } from '../colors.js';
|
|
|
|
|
|
|
|
|
|
export const ShellModeIndicator: React.FC = () => (
|
|
|
|
|
<Box>
|
|
|
|
|
<Text color={Colors.AccentYellow}>
|
|
|
|
|
shell mode enabled
|
2025-05-20 22:45:10 -07:00
|
|
|
<Text color={Colors.SubtleComment}> (esc to disable)</Text>
|
2025-05-18 22:16:57 -07:00
|
|
|
</Text>
|
|
|
|
|
</Box>
|
|
|
|
|
);
|