36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
interface ConfirmDialogProps {
|
|
open: boolean;
|
|
title: string;
|
|
message: string;
|
|
onConfirm: () => void;
|
|
onCancel: () => void;
|
|
}
|
|
|
|
export function ConfirmDialog({ open, title, message, onConfirm, onCancel }: ConfirmDialogProps) {
|
|
if (!open) return null;
|
|
|
|
return (
|
|
<div className="fixed inset-0 z-50 flex items-center justify-center animate-fade-in">
|
|
<div className="absolute inset-0 bg-black/50 backdrop-blur-sm" onClick={onCancel} />
|
|
<div className="relative z-10 w-full max-w-md glass p-6 shadow-2xl animate-slide-up">
|
|
<h2 className="text-lg font-semibold text-gray-100">{title}</h2>
|
|
<p className="mt-2 text-sm text-gray-400">{message}</p>
|
|
<div className="mt-6 flex justify-end gap-3">
|
|
<button
|
|
onClick={onCancel}
|
|
className="rounded-lg border border-white/[0.1] bg-white/[0.04] px-4 py-2 text-sm text-gray-300 hover:bg-white/[0.08] transition-all duration-200"
|
|
>
|
|
Cancel
|
|
</button>
|
|
<button
|
|
onClick={onConfirm}
|
|
className="rounded-lg bg-gradient-to-r from-red-600 to-red-500 px-4 py-2 text-sm text-white hover:from-red-500 hover:to-red-400 transition-all duration-200"
|
|
>
|
|
Confirm
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|