export const ConfirmationDialog = ({ isOpen, title, message, confirmLabel = "Confirm", cancelLabel = "Cancel", confirmColor = "bg-blue-600 hover:bg-blue-700", onConfirm, onCancel, }: { isOpen: boolean; title: string; message: string | React.ReactNode; confirmLabel?: string; cancelLabel?: string; confirmColor?: string; onConfirm: () => void; onCancel: () => void; }) => { if (!isOpen) return null; return (
{message}