Files
gemini-cli/packages/cli/src/ui/components/ShellModeIndicator.tsx
Miguel Solorio 3c0af3654a Update semantic color tokens (#6253)
Co-authored-by: jacob314 <jacob314@gmail.com>
2025-08-15 22:39:54 +00:00

19 lines
412 B
TypeScript

/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import React from 'react';
import { Box, Text } from 'ink';
import { theme } from '../semantic-colors.js';
export const ShellModeIndicator: React.FC = () => (
<Box>
<Text color={theme.status.warning}>
shell mode enabled
<Text color={theme.text.secondary}> (esc to disable)</Text>
</Text>
</Box>
);