mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-11 03:46:49 -07:00
33 lines
771 B
TypeScript
33 lines
771 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import type React from 'react';
|
|
import { Box, Text } from 'ink';
|
|
import { Colors } from '../../colors.js';
|
|
import { RenderInline } from '../../utils/InlineMarkdownRenderer.js';
|
|
|
|
interface WarningMessageProps {
|
|
text: string;
|
|
}
|
|
|
|
export const WarningMessage: React.FC<WarningMessageProps> = ({ text }) => {
|
|
const prefix = '⚠ ';
|
|
const prefixWidth = 3;
|
|
|
|
return (
|
|
<Box flexDirection="row" marginTop={1}>
|
|
<Box width={prefixWidth}>
|
|
<Text color={Colors.AccentYellow}>{prefix}</Text>
|
|
</Box>
|
|
<Box flexGrow={1}>
|
|
<Text wrap="wrap" color={Colors.AccentYellow}>
|
|
<RenderInline text={text} />
|
|
</Text>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
};
|