aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/buttons/button.component.html
blob: a7dd4bb10429de1cdcf06aeb6c35b66dbde15f7a (plain) (blame)
1
2
3
4
5
6
7
8
<span class="action-button" [ngClass]="getClasses()" [title]="getTitle()">
  <my-global-icon *ngIf="!loading" [iconName]="icon"></my-global-icon>
  <my-small-loader [loading]="loading"></my-small-loader>

  <span class="button-label">{{ label }}</span>

  <ng-content></ng-content>
</span>