Progress
Displays an indicator showing the completion progress of a task.
import { Progress } from "@murasakijs/ui";export function ProgressDemo() {return <Progress value={60} className="w-[60%]" />;}Usage
import { Progress } from "@murasakijs/ui";<Progress value={60} />API Reference
Props
| Prop | Type | Default |
|---|---|---|
value | number | null | — |
Progress renders a Radix UI Progress.Root
whose indicator is translated horizontally based on value (0–100).