12 lines
320 B
HTML
12 lines
320 B
HTML
<div class="flex justify-end gap-2">
|
|
<button pButton [label]="cancelLabel" severity="secondary" type="button" (click)="cancel()"></button>
|
|
<button
|
|
pButton
|
|
[label]="submitLabel"
|
|
type="submit"
|
|
class="min-w-28"
|
|
[disabled]="disabled"
|
|
[loading]="loading"
|
|
(onClick)="submit()"></button>
|
|
</div>
|