import { Progress } from "./progress"; export default function ProgressDemo() { return ( <div className="flex items-center justify-center p-8 w-full"> <div className="w-full max-w-sm space-y-4"> <Progress value={33} /> <Progress value={66} /> <Progress value={100} /> </div> </div> ); }