Progress

Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.

Preview

Usage

import { Progress } from "@sunsatosolutions/ui"

export function ProgressDemo() {
  const [progress, setProgress] = React.useState(13)

  React.useEffect(() => {
    const timer = setTimeout(() => setProgress(66), 500)
    return () => clearTimeout(timer)
  }, [])

  return <Progress value={progress} className="w-[60%]" />
}