2025-06-17 08:24:07 -07:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import { Box, Text } from 'ink';
|
2025-08-15 15:39:54 -07:00
|
|
|
import { theme } from '../semantic-colors.js';
|
2025-06-17 08:24:07 -07:00
|
|
|
|
|
|
|
|
interface UpdateNotificationProps {
|
|
|
|
|
message: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const UpdateNotification = ({ message }: UpdateNotificationProps) => (
|
|
|
|
|
<Box
|
|
|
|
|
borderStyle="round"
|
2025-08-15 15:39:54 -07:00
|
|
|
borderColor={theme.status.warning}
|
2025-06-17 08:24:07 -07:00
|
|
|
paddingX={1}
|
|
|
|
|
marginY={1}
|
|
|
|
|
>
|
2025-08-15 15:39:54 -07:00
|
|
|
<Text color={theme.status.warning}>{message}</Text>
|
2025-06-17 08:24:07 -07:00
|
|
|
</Box>
|
|
|
|
|
);
|