import { Modal } from '@/components/Modal'; interface ConfirmModalProps { title: string; message: string; confirmLabel?: string; onConfirm: () => void; onClose: () => void; } export function ConfirmModal({ title, message, confirmLabel = 'Delete', onConfirm, onClose, }: ConfirmModalProps) { return (

{message}

); }