/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import React from 'react'; import { Text, Box } from 'ink'; import { MarkdownDisplay } from '../../utils/MarkdownDisplay.js'; import { Colors } from '../../colors.js'; interface GeminiMessageProps { text: string; isPending: boolean; availableTerminalHeight?: number; terminalWidth: number; } export const GeminiMessage: React.FC = ({ text, isPending, availableTerminalHeight, terminalWidth, }) => { const prefix = '✦ '; const prefixWidth = prefix.length; return ( {prefix} ); };