Progress Bar UI

Use Case 1: Basic Progress

Basic Progress

// Use Case 1: Basic Progress
<ProgressUI
  progress={progress}
  title="Static Title"
  bgColor="#63b3ed"
  textColor="#1e3a8a"
/>
Static Title
1%
Elapsed Time: 0h 0m 1s

Use Case 2: Progress with Elapsed Time

Progress with Elapsed Time

// Use Case 2: Progress with Elapsed Time
<ProgressUI
  progress={progress}
  title="The Celestial Safari"
  bgColor="#CDC537"
  textColor="#06152B"
  showElapsedTime
  status="Embark on a magical adventure!"
/>
The Celestial Safari
1%
Elapsed Time: 0h 0m 1s
A tale of wonder and exploration!

Use Case 3: Custom Styled Progress (Dark Mode)

Custom Styled Progress (Dark Mode)

// Use Case 3: Custom Styled Progress (Dark Mode)
<ProgressUI
  progress={progress}
  title="Epic Journey to the Stars"
  bgColor="#1a202c"
  textColor="#cbd5e0"
  variant="dark"
  showElapsedTime
  status="Journey to the unknown and beyond!"
/>
Chronicles of the Nebula
1%
Elapsed Time: 0h 0m 1s
Challenge the limits of space and time!

Use Case 4: Progress without Elapsed Time

Progress without Elapsed Time

// Use Case 4: Progress without Elapsed Time
<ProgressUI
  progress={progress}
  title="Secrets of the Lost City"
  bgColor="#CA7F5F"
  textColor="#0F0536"
  showElapsedTime={false}
  status="Face the cosmic challenges!"
/>
The Celestial Safari
1%
Embark on a magical adventure!

Use Case 5: Custom Styled Progress without Elapsed Time (Dark Mode)

Custom Styled Progress without Elapsed Time (Dark Mode)

// Use Case 5: Custom Styled Progress without Elapsed Time (Dark Mode)
<ProgressUI
  progress={progress}
  title="Chronicles of the Nebula"
  bgColor="#1a202c"
  textColor="#cbd5e0"
  variant="dark"
  showElapsedTime={false}
  status="Face the cosmic challenges!"
/>
Secrets of the Lost City
1%
Face the cosmic challenges!

Use Case 6: Basic Progress without Status

Basic Progress without Status

// Use Case 6: Basic Progress without Status
<ProgressUI
  progress={progress}
  title="The Quantum Odyssey"
  bgColor="#37CEB2"
  textColor="#6541BA"
/>
Epic Journey to the Stars
1%
Elapsed Time: 0h 0m 1s

Use Case 7: Dynamic Start with Elapsed Time

Render a progress bar with elapsed time in dark mode after the user clicks on the start button.

 
          //Use Case 7 : Demonstrate Elapsed time 
          <ProgressUI
          progress={progress}
          title={getRandomTitle()}
          showElapsedTime
          status={"some message"}/>