mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-31 08:20:54 -07:00
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Jack Wotherspoon <jackwoth@google.com>
23 lines
499 B
TypeScript
23 lines
499 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import type React from 'react';
|
|
import { StatsDisplay } from './StatsDisplay.js';
|
|
|
|
interface SessionSummaryDisplayProps {
|
|
duration: string;
|
|
}
|
|
|
|
export const SessionSummaryDisplay: React.FC<SessionSummaryDisplayProps> = ({
|
|
duration,
|
|
}) => (
|
|
<StatsDisplay
|
|
title="Agent powering down. Goodbye!"
|
|
duration={duration}
|
|
footer="Tip: Resume a previous session using gemini --resume or /resume"
|
|
/>
|
|
);
|