mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-15 05:47:18 -07:00
19 lines
452 B
TypeScript
19 lines
452 B
TypeScript
|
|
/**
|
||
|
|
* @license
|
||
|
|
* Copyright 2026 Google LLC
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
import type React from 'react';
|
||
|
|
import { Box, Text } from 'ink';
|
||
|
|
import { Colors } from '../../colors.js';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Loading state component displayed while sessions are being loaded.
|
||
|
|
*/
|
||
|
|
export const SessionBrowserLoading = (): React.JSX.Element => (
|
||
|
|
<Box flexDirection="column" paddingX={1}>
|
||
|
|
<Text color={Colors.Gray}>Loading sessions…</Text>
|
||
|
|
</Box>
|
||
|
|
);
|