Progress

Visual indicators of task completion. Progress renders a horizontal bar; ProgressCircular renders an SVG ring. Both animate smoothly and include a glowing sweep effect.

Value: 60

Linear Usage

import { Progress } from "@bloomkit/react";
 
<Progress value={75} />

Circular Usage

import { ProgressCircular } from "@bloomkit/react";
 
<ProgressCircular value={75} />
<ProgressCircular value={40} size={64} strokeWidth={6} />

Progress Props

PropTypeDefaultDescription
valuenumber0Current progress value between 0 and 100
classNamestring""Additional Tailwind classes applied to the track element

ProgressCircular Props

PropTypeDefaultDescription
valuenumber0Current progress value between 0 and 100
sizenumber48Diameter of the SVG circle in pixels
strokeWidthnumber4Width of the progress ring stroke in pixels
classNamestring""Additional Tailwind classes applied to the wrapper element