x
1
2
3
4
5
6
7
8
9
<div class=""> <div class="flex justify-between items-center mb-1"> <span class="text-sm font-medium text-grayscale-700">Uploading files...</span> <span class="text-sm font-medium text-grayscale-700">68%</span> </div> <div class="bg-grayscale-200 rounded-full overflow-hidden h-3" role="progressbar" aria-valuenow="68" aria-valuemin="0" aria-valuemax="100"> <div class="rounded-full transition-all duration-300 ease-out h-full bg-primary-600" style="width: 68.0%"></div> </div></div>1
2
3
4
5
6
7
render BetterUi::ProgressComponent.new( value: 68, variant: :primary, size: :md, label: "Uploading files...", show_value: true)No notes provided.
No params configured.