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

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

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