mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-14 08:01:02 -07:00
22 lines
493 B
TypeScript
22 lines
493 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import type React from 'react';
|
|
import { Box, Text } from 'ink';
|
|
import { theme } from '../semantic-colors.js';
|
|
|
|
export const RawMarkdownIndicator: React.FC = () => {
|
|
const modKey = process.platform === 'darwin' ? 'option+m' : 'alt+m';
|
|
return (
|
|
<Box>
|
|
<Text>
|
|
raw markdown mode
|
|
<Text color={theme.text.secondary}> ({modKey} to toggle) </Text>
|
|
</Text>
|
|
</Box>
|
|
);
|
|
};
|