import { Alert02Icon } from 'hugeicons-react'; import Dialog, { DialogButton } from './Dialog'; /** Blocking confirmation for destructive work, so deletes never run unprompted. */ export default function ConfirmDialog({ title, message, details, confirmLabel = 'Confirm', variant = 'danger', onConfirm, onCancel, }) { return ( } footer={ <> Cancel {confirmLabel} } > {details?.length > 0 && ( )} ); }