import { AlertTriangleIcon } from "lucide-react"; import { Alert, AlertDescription, AlertTitle } from "../ui/alert"; export function ChatError({ error }: { error: Error }) { return ( {error.name} {error.message} ); }