- This utilizes `ink-gradient` to render GEMINI CODE in amazing colors. - Added a shared color configuration for UX (should this be in config?). It's very possible that we shouldn't be talking about the specific colors and instead be mentioning "foreground"/"background"/inlineCode etc. type colors. - Updated existing color usages to utilize `Colors.*` Fixes https://b.corp.google.com/issues/411385593
24 lines
566 B
TypeScript
24 lines
566 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { Box, Text } from 'ink';
|
|
import { Colors } from '../colors.js';
|
|
|
|
interface FooterProps {
|
|
queryLength: number;
|
|
}
|
|
|
|
export const Footer: React.FC<FooterProps> = ({ queryLength }) => (
|
|
<Box marginTop={1} justifyContent="space-between">
|
|
<Box minWidth={15}>
|
|
<Text color={Colors.SubtleComment}>
|
|
{queryLength === 0 ? '? for shortcuts' : ''}
|
|
</Text>
|
|
</Box>
|
|
<Text color={Colors.AccentBlue}>Gemini</Text>
|
|
</Box>
|
|
);
|