Saaj UI

Progress

Displays the status of a task that takes a long time to complete.

Installation

npx saaj add progress

Usage

import { Progress } from '@/components/ui/progress';
 
export function ProgressDemo() {
  const [progress, setProgress] = useState(20);
 
  return (
    <Progress value={progress} />
  );
}

On this page