mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
39 lines
1.8 KiB
HTML
39 lines
1.8 KiB
HTML
<nb-card>
|
|
<nb-card-header>Button With Spinner</nb-card-header>
|
|
<nb-card-body>
|
|
<div class="row">
|
|
<div class="col-md-12 col-lg-12 col-xxxl-12">
|
|
<button nbButton matRipple status="success" size="large" (click)="toggleLoadingLargeGroupAnimation()"
|
|
[nbSpinner]="loadingLargeGroup" nbSpinnerStatus="success" nbSpinnerSize="large" nbSpinnerMessage="">
|
|
Download
|
|
</button>
|
|
|
|
<button nbButton matRipple status="primary" size="large" (click)="toggleLoadingLargeGroupAnimation()"
|
|
[nbSpinner]="loadingLargeGroup" nbSpinnerStatus="primary" nbSpinnerSize="large" nbSpinnerMessage="">
|
|
Download
|
|
</button>
|
|
|
|
<button nbButton matRipple status="warning" size="large" (click)="toggleLoadingLargeGroupAnimation()"
|
|
[nbSpinner]="loadingLargeGroup" nbSpinnerStatus="warning" nbSpinnerSize="large" nbSpinnerMessage="">
|
|
Download
|
|
</button>
|
|
</div>
|
|
<div class="col-md-12 col-lg-12 col-xxxl-12 size-medium-group">
|
|
<button nbButton matRipple status="danger" size="medium" (click)="toggleLoadingMediumGroupAnimation()"
|
|
[nbSpinner]="loadingMediumGroup" nbSpinnerStatus="danger" nbSpinnerMessage="">
|
|
Download
|
|
</button>
|
|
|
|
<button nbButton matRipple status="info" size="medium" (click)="toggleLoadingMediumGroupAnimation()"
|
|
[nbSpinner]="loadingMediumGroup" nbSpinnerStatus="info" nbSpinnerSize="small" nbSpinnerMessage="">
|
|
Download
|
|
</button>
|
|
|
|
<button nbButton matRipple status="primary" size="medium" (click)="toggleLoadingMediumGroupAnimation()"
|
|
[nbSpinner]="loadingMediumGroup" nbSpinnerStatus="primary" nbSpinnerSize="tiny" nbSpinnerMessage="">
|
|
Download
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</nb-card-body>
|
|
</nb-card>
|