Skip to Content
Archi-ui 1.0.25 is released 🎉
ComponentsCircularProgress

CircularProgress

Progress indicators commonly known as spinners, express an unspecified wait time or display the length of a process.

Progress indicators inform users about the status of ongoing processes, such as loading an app, submitting a form, or saving updates

  • Determinate indicators display how long an operation will take.
  • Indeterminate indicators visualize an unspecified wait time.

Basic CircularProgress

Usage

import { CircularProgress } from 'archi-ui'
<CircularProgress />

Color

Use color prop to apply different colors for component.

Variant

The CircularProgress comes with two variants: indeterminate(default), determinate.

Indeterminate

Determinate

Determinate with Label

0%

Size

Use size prop to change the size of the component.

CircularProgress API

API reference docs for the React CircularProgress component.

Props

NameTypeDefaultDescription
classNamestring-Override or extend the styles applied to the component.
variant'determinate' | 'indeterminate''indeterminate'The variant to use. Use indeterminate when there is no progress value.
size'lg' | 'md' | 'sm''lg'The size of the component.
color'default' | 'primary' | 'secondary' | 'info' | 'warning' | 'success' | 'error''primary'The color of the component.
thicknessnumber'3.6'The thickness of the circle.
valuenumber0The value of the progress indicator for the determinate and buffer variants. Value between 0 and 100.
Last updated on