A
Auralix UI

Progress

Linear and circular progress indicators.

Preview

65%
80%

Installation

bash
npx auralix-ui add progress

Usage

Linear Progress

tsx
import { LinearProgress, CircularProgress } from "@/components/ui/Progress";

<LinearProgress value={75} />
<CircularProgress value={50} showValue />

Props

NameTypeDefaultDescription
valuenumber0Progress value (0-100).
variant"default" | "gradient" | "striped""default"Visual variant.
size"sm" | "md" | "lg""md"Size of the progress bar.
showValuebooleanfalseShow percentage value.