JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app ng-init="percent = 42" class="outer">
<div class="inner" ng-style="{ width: percent + '%' }"></div>
</div>
CSS
.inner {
height: 5px;
background-color: #333;
}
.outer {
border: 1px solid black;
}