import { ThemeMode } from '../../types'; import { AccentColor } from '../../utils/colorUtils'; import { Icon } from '../Icons'; interface BannerCTA { label: string; onClick: () => void; } export interface BannerProps { label: string; color?: AccentColor; ctas?: BannerCTA[]; icon?: Icon; forceTheme?: ThemeMode; onClose?: () => void; }