Application Progress Bars With labels and status colors

Live Preview
<div role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
      <div class="flex justify-between gap-4">
        <span class="text-sm font-medium text-gray-900">Updating</span>

        <span class="text-sm font-medium text-gray-900">25%</span>
      </div>

      <div class="mt-2 h-2 w-full rounded-full bg-gray-200">
        <div class="h-full rounded-full bg-blue-600" style="width: 25%"></div>
      </div>
    </div>

    <div role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
      <div class="flex justify-between gap-4">
        <span class="text-sm font-medium text-gray-900">Downloading</span>

        <span class="text-sm font-medium text-gray-900">100%</span>
      </div>

      <div class="mt-2 h-2 w-full rounded-full bg-gray-200">
        <div class="h-full rounded-full bg-green-600" style="width: 100%"></div>
      </div>
    </div>

    <div role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100">
      <div class="flex justify-between gap-4">
        <span class="text-sm font-medium text-gray-900">Loading</span>

        <span class="text-sm font-medium text-gray-900">50%</span>
      </div>

      <div class="mt-2 h-2 w-full rounded-full bg-gray-200">
        <div class="h-full rounded-full bg-gray-600" style="width: 50%"></div>
      </div>
    </div>

Related components

More items from the merged UI library.

View all