Exemplo de como ficaria com o ZardUI.
constructor(private dialog: ZardDialogService) {}
showConfirm(): void {
this.dialog.confirm({
zTitle: 'Are you absolutely sure?',
zContent: 'This action cannot be undone. This will permanently delete your account and remove your data from our servers.',
zOnOk: () => console.log('OK'),
zOkText: 'Delete account',
zOkDestructive: true
});
}