| /** | |
| * @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} /> | |
| ); | |