Basic Progress
// Use Case 1: Basic Progress
<ProgressUI
progress={progress}
title="Static Title"
bgColor="#63b3ed"
textColor="#1e3a8a"
/>
Progress with Elapsed Time
// Use Case 2: Progress with Elapsed Time
<ProgressUI
progress={progress}
title="Chronicles of the Nebula"
bgColor="#E41B73"
textColor="#314660"
showElapsedTime
status="Embark on a magical adventure!"
/>
Custom Styled Progress (Dark Mode)
// Use Case 3: Custom Styled Progress (Dark Mode)
<ProgressUI
progress={progress}
title="The Enchanted Quest"
bgColor="#1a202c"
textColor="#cbd5e0"
variant="dark"
showElapsedTime
status="Journey to the unknown and beyond!"
/>
Progress without Elapsed Time
// Use Case 4: Progress without Elapsed Time
<ProgressUI
progress={progress}
title="Chronicles of the Nebula"
bgColor="#9B1946"
textColor="#54E76F"
showElapsedTime={false}
status="Journey to the unknown and beyond!"
/>
Custom Styled Progress without Elapsed Time (Dark Mode)
// Use Case 5: Custom Styled Progress without Elapsed Time (Dark Mode)
<ProgressUI
progress={progress}
title="The Enchanted Quest"
bgColor="#1a202c"
textColor="#cbd5e0"
variant="dark"
showElapsedTime={false}
status="Navigate through the galaxies!"
/>
Basic Progress without Status
// Use Case 6: Basic Progress without Status
<ProgressUI
progress={progress}
title="The Celestial Safari"
bgColor="#2F822B"
textColor="#35496A"
/>
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"}/>