From c3971754bf4bd5877d7a57c523b981c09d4fa35d Mon Sep 17 00:00:00 2001 From: Eddie Santos <9561596+eddie-santos@users.noreply.github.com> Date: Tue, 17 Jun 2025 08:24:07 -0700 Subject: Auto-update notifications (#1110) --- .../cli/src/ui/components/UpdateNotification.tsx | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 packages/cli/src/ui/components/UpdateNotification.tsx (limited to 'packages/cli/src/ui/components/UpdateNotification.tsx') 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) => ( + + {message} + +); -- cgit v1.2.3