mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-21 18:44:30 -07:00
Add shortcuts hint and panel for discoverability (#18035)
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2025 Google LLC
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
import type React from 'react';
|
||||
import { Text } from 'ink';
|
||||
import { useTerminalSize } from '../../hooks/useTerminalSize.js';
|
||||
import { theme } from '../../semantic-colors.js';
|
||||
|
||||
interface HorizontalLineProps {
|
||||
width?: number;
|
||||
color?: string;
|
||||
}
|
||||
|
||||
export const HorizontalLine: React.FC<HorizontalLineProps> = ({
|
||||
width,
|
||||
color = theme.border.default,
|
||||
}) => {
|
||||
const { columns } = useTerminalSize();
|
||||
const resolvedWidth = Math.max(1, width ?? columns);
|
||||
|
||||
return <Text color={color}>{'─'.repeat(resolvedWidth)}</Text>;
|
||||
};
|
||||
Reference in New Issue
Block a user