2025-05-18 22:16:57 -07:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
2025-08-26 00:04:53 +02:00
|
|
|
import type React from 'react';
|
2025-05-18 22:16:57 -07:00
|
|
|
import { Box, Text } from 'ink';
|
2025-09-10 10:57:07 -07:00
|
|
|
import { theme } from '../semantic-colors.js';
|
2025-05-18 22:16:57 -07:00
|
|
|
|
|
|
|
|
export const ShellModeIndicator: React.FC = () => (
|
|
|
|
|
<Box>
|
2025-09-11 10:34:29 -07:00
|
|
|
<Text color={theme.ui.symbol}>
|
2025-05-18 22:16:57 -07:00
|
|
|
shell mode enabled
|
2025-09-10 10:57:07 -07:00
|
|
|
<Text color={theme.text.secondary}> (esc to disable)</Text>
|
2025-05-18 22:16:57 -07:00
|
|
|
</Text>
|
|
|
|
|
</Box>
|
|
|
|
|
);
|