Skip to content

Progress

A task with a finish line. Known progress shows a percentage; unknown work animates instead of guessing.

Determinate

40%
<Progress label="Upload" value={40} max={100} showValue />

Indeterminate

<Progress label="Waiting for the server" />

Sizes and tones

80%
55%
30%
<Progress label="Small" value={60} size="sm" />
<Progress label="Success" value={80} tone="success" />

Props

PropTypeDefaultDescription
valuenumber-Current value; omit for indeterminate.
maxnumber100Finish line.
labelstring-Accessible name (required).
showValuebooleanfalseVisible percentage.
sizesm | md | lgmdBar height.
toneaccent | success | warning | dangeraccentFill color; pair with the label word, never color alone.

Theming

:root {
  --ink-progress-height: 0.5rem;
}

Accessibility