Progress

A horizontal bar that visually communicates the completion status of an ongoing operation.

import { Progress } from "@/components/ui/progress";

export default function ProgressDemo() {
  return <Progress value={50} className="w-full max-w-xs" />;
}

Installation

Usage

import { Progress } from "@/components/ui/progress";
<Progress value={50} />