import { X } from 'lucide-react'; import '../styles/ErrorDialog.css'; interface ErrorDialogProps { title: string; message: string; onClose: () => void; } export function ErrorDialog({ title, message, onClose }: ErrorDialogProps) { return (
{message}