import { Modal } from './Modal' import { Button } from './primitives' interface ConfirmDialogProps { open: boolean title: string message: string confirmLabel?: string cancelLabel?: string onConfirm: () => void onCancel: () => void } export function ConfirmDialog({ open, title, message, confirmLabel = 'حذف', cancelLabel = 'انصراف', onConfirm, onCancel, }: ConfirmDialogProps) { return ( } >

{message}

) }