"use client"; import { Button } from "@/components/ui/button"; import { AlertTriangle } from "lucide-react"; interface ErrorBannerProps { message?: string; onRetry?: () => void; } export function ErrorBanner({ message = "Something went wrong. Please try again.", onRetry }: ErrorBannerProps) { return (

{message}

{onRetry && }
); }