mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-14 23:31:13 -07:00
29 lines
556 B
TypeScript
29 lines
556 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { Text, Box } from 'ink';
|
|
|
|
interface UserMessageProps {
|
|
text: string;
|
|
}
|
|
|
|
export const UserMessage: React.FC<UserMessageProps> = ({ text }) => {
|
|
const prefix = '> ';
|
|
const prefixWidth = prefix.length;
|
|
|
|
return (
|
|
<Box flexDirection="row">
|
|
<Box width={prefixWidth}>
|
|
<Text color="gray">{prefix}</Text>
|
|
</Box>
|
|
<Box flexGrow={1}>
|
|
<Text wrap="wrap">{text}</Text>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
};
|