Files
gemini-cli/packages/cli/src/ui/components/Footer.tsx
T

18 lines
424 B
TypeScript
Raw Normal View History

2025-04-15 21:41:08 -07:00
import React from 'react';
import { Box, Text } from 'ink';
interface FooterProps {
2025-04-17 18:06:21 -04:00
queryLength: number;
2025-04-15 21:41:08 -07:00
}
2025-04-18 10:53:16 -04:00
const Footer: React.FC<FooterProps> = ({ queryLength }) => (
2025-04-17 18:06:21 -04:00
<Box marginTop={1} justifyContent="space-between">
<Box minWidth={15}>
<Text color="gray">{queryLength === 0 ? '? for shortcuts' : ''}</Text>
</Box>
<Text color="blue">Gemini</Text>
</Box>
);
2025-04-15 21:41:08 -07:00
2025-04-17 18:06:21 -04:00
export default Footer;