mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-20 16:57:46 +00:00
22 lines
482 B
TypeScript
22 lines
482 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { Box, Text } from 'ink';
|
|
|
|
interface FooterProps {
|
|
queryLength: number;
|
|
}
|
|
|
|
export const Footer: React.FC<FooterProps> = ({ queryLength }) => (
|
|
<Box marginTop={1} justifyContent="space-between">
|
|
<Box minWidth={15}>
|
|
<Text color="gray">{queryLength === 0 ? '? for shortcuts' : ''}</Text>
|
|
</Box>
|
|
<Text color="blue">Gemini</Text>
|
|
</Box>
|
|
);
|