import type { ReactNode } from "react"; import { cn } from "@/lib/utils"; /** * Inline error for forms and cards — plain language, not a stack trace. */ export function ErrorBanner({ children, className, title = "Something went wrong", }: { children: ReactNode; className?: string; title?: string; }) { return (

{title}

{children}
); }