clr-angular-static-fix
Version:
1. Install Clarity Icons package through npm:
22 lines (20 loc) • 751 B
HTML
<!--
~ Copyright (c) 2016-2018 VMware, Inc. All Rights Reserved.
~ This software is released under MIT license.
~ The full license information can be found in LICENSE in the root directory of this project.
-->
<div class="alerts-pager-control">
<div class="alerts-page-down">
<button class="alerts-pager-button" (click)="pageDown()">
<clr-icon shape="caret left"></clr-icon>
</button>
</div>
<div class="alerts-pager-text">
{{this.multiAlertService.current+1}} / {{this.multiAlertService.count}}
</div>
<div class="alerts-page-up">
<button class="alerts-pager-button" (click)="pageUp()">
<clr-icon shape="caret right"></clr-icon>
</button>
</div>
</div>