Picsur/frontend/src/app/util/dialog-manager/confirm-dialog/confirm-dialog.component.html
2022-09-04 19:37:52 +02:00

15 lines
309 B
HTML

<div class="dialog-text">
<h2>{{ data.title }}</h2>
<p>{{ data.description }}</p>
</div>
<div class="dialog-buttons">
<button
*ngFor="let button of data.buttons"
mat-button
[color]="button.color"
(click)="onButton(button.name)"
>
{{ button.text.toUpperCase() }}
</button>
</div>