Files
perfdb/pdb-js/src/app/confirmation-dialog/confirmation-dialog.component.html
2023-03-05 18:12:31 +01:00

16 lines
565 B
HTML

<style>
div[mat-dialog-content] {
display: flex;
align-items: center;
gap: 1em;
}
</style>
<h1 *ngIf="data.title" mat-dialog-title>{{data.title}}</h1>
<div mat-dialog-content>
<img src="assets/img/question-mark-round.svg" class="icon-middle" />
<div>{{data.text}}</div>
</div>
<div mat-dialog-actions align="end">
<button mat-button mat-dialog-close cdkFocusRegionStart focus>{{data.btnCancelLabel}}</button>
<button mat-raised-button color="warn" mat-dialog-close (click)="onOkClick()" cdkFocusRegionEnd>{{data.btnOkLabel}}</button>
</div>