- This has the entirety of the changes. Part of https://b.corp.google.com/issues/411720532
18 lines
410 B
TypeScript
18 lines
410 B
TypeScript
import React from 'react';
|
|
import { Box, Text } from 'ink';
|
|
|
|
interface FooterProps {
|
|
queryLength: number;
|
|
}
|
|
|
|
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>
|
|
);
|
|
|
|
export default Footer;
|