"use client"; import type { ReactElement } from "react"; import { Info, X } from "lucide-react"; export interface AuthErrorBannerProps { message: string; onDismiss?: () => void; } export function AuthErrorBanner({ message, onDismiss }: AuthErrorBannerProps): ReactElement { return (
); }