Usage
import { Progress } from '@/components/ui/progress'<Progress value={60} className="w-64" />Values
Display progress at different completion stages:
<div className="flex flex-col gap-4 w-64">
<Progress value={0} />
<Progress value={33} />
<Progress value={66} />
<Progress value={100} />
</div>Indeterminate
Omit the value prop to show an indeterminate state:
<Progress className="w-64" />Last updated on