diff options
Diffstat (limited to 'packages/cli/src/ui/components')
| -rw-r--r-- | packages/cli/src/ui/components/UpdateNotification.tsx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/cli/src/ui/components/UpdateNotification.tsx b/packages/cli/src/ui/components/UpdateNotification.tsx new file mode 100644 index 00000000..b88c9bd5 --- /dev/null +++ b/packages/cli/src/ui/components/UpdateNotification.tsx @@ -0,0 +1,23 @@ +/** + * @license + * Copyright 2025 Google LLC + * SPDX-License-Identifier: Apache-2.0 + */ + +import { Box, Text } from 'ink'; +import { Colors } from '../colors.js'; + +interface UpdateNotificationProps { + message: string; +} + +export const UpdateNotification = ({ message }: UpdateNotificationProps) => ( + <Box + borderStyle="round" + borderColor={Colors.AccentYellow} + paddingX={1} + marginY={1} + > + <Text color={Colors.AccentYellow}>{message}</Text> + </Box> +); |
