/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { Box, Text } from 'ink'; import { ThemedGradient } from './ThemedGradient.js'; interface BannerProps { bannerText: string; color: string; width: number; } export const Banner = ({ bannerText, color, width }: BannerProps) => ( {bannerText} );