mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
- The push for these changes didn't make it through.... Just doing a quick fix here which should have been in: https://github.com/google-gemini/gemini-code/pull/181
32 lines
657 B
TypeScript
32 lines
657 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { Text, Box } from 'ink';
|
|
import { Colors } from '../../colors.js';
|
|
|
|
interface UserMessageProps {
|
|
text: string;
|
|
}
|
|
|
|
export const UserMessage: React.FC<UserMessageProps> = ({ text }) => {
|
|
const prefix = '> ';
|
|
const prefixWidth = prefix.length;
|
|
|
|
return (
|
|
<Box flexDirection="row" marginY={1}>
|
|
<Box width={prefixWidth}>
|
|
<Text color={Colors.Gray}>{prefix}</Text>
|
|
</Box>
|
|
<Box flexGrow={1}>
|
|
<Text wrap="wrap" color={Colors.Gray}>
|
|
{text}
|
|
</Text>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
};
|