import { Button } from "./Button"; import { Modal } from "./ModalProps"; interface ConfirmDialogProps { open: boolean; title: string; description: string; confirmLabel?: string; onConfirm: () => void; onCancel: () => void; loading?: boolean; } export function ConfirmDialog({ open, title, description, confirmLabel = "Delete", onConfirm, onCancel, loading = false, }: ConfirmDialogProps) { return ( } >

{description}

); }