mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-07-11 10:30:46 -07:00
945e7940f2
- Also updated README.md accordingly. Part of https://b.corp.google.com/issues/411384603
20 lines
438 B
TypeScript
20 lines
438 B
TypeScript
import React from 'react';
|
|
import { Box, Text } from 'ink';
|
|
|
|
interface FooterProps {
|
|
queryLength: number;
|
|
}
|
|
|
|
const Footer: React.FC<FooterProps> = ({ queryLength }) => {
|
|
return (
|
|
<Box marginTop={1} justifyContent="space-between">
|
|
<Box minWidth={15}>
|
|
<Text color="gray">{queryLength === 0 ? '? for shortcuts' : ''}</Text>
|
|
</Box>
|
|
<Text color="blue">Gemini</Text>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|