G-Loot DS — progresscontainer with tick

by Augustin Hiebel

HTML

<!-- Change the css variable --percent to handle the value of the bar... -->
<!-- You can customize the content of the 2 divs the way you want -->
<div className="progresscontainer" style={{"--percent": value}}>
  <!-- front -->
  <div>
    <div className="text-2xl font-bold">{value}%</div>
    <div className="text-sm">Analysing</div>
  </div>
  <!-- back -->
  <div>
    <div className="text-2xl font-bold">{value}%</div>
    <div className="text-sm">Analysing</div>
  </div>
</div>