unicorn-components
Version:
<a target="_blank" href="https://getunicorn.io"><img src="https://bitbucket-assetroot.s3.amazonaws.com/c/photos/2017/Jul/07/2615006260-5-nitsnetsstudios-ondemand-UNI_avatar.png" align="left"></a>
7 lines (6 loc) • 442 B
HTML
<div class="uni-progress__container" [class.uni-progress__container--only-bar]="!showCount">
<div [class]="'uni-progress__bar ' + (color ? 'uni-progress__bar--' + color : '')" [style.width]="value * 100 / total + '%'">
<span class="uni-progress__percentage" *ngIf="showPercentage">{{value * 100 / total | number:'1.0-2'}}%</span>
</div>
</div>
<span class="uni-progress__counter" *ngIf="showCount"> {{value}}/{{total}}</span>