]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/submit-button/submit-button.component.html
import ceph quincy 17.2.4
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / submit-button / submit-button.component.html
1 <button [type]="type"
2 class="btn btn-accent tc_submitButton"
3 [ngClass]="btnClass"
4 [disabled]="loading || disabled"
5 (click)="submit($event)"
6 [attr.aria-label]="ariaLabel">
7 <ng-content></ng-content>
8 <span *ngIf="loading">
9 <i [ngClass]="[icons.spinner, icons.spin]"></i>
10 </span>
11 </button>