Components
Loading preview...
Pixel-art progress bar from 8bitcn.com — chunky pixel fill, self-contained (no shadcn primitive dependency).
npx shadcn@latest add https://21st.dev/r/theorcdev/8bit-progress"use client";
import { Progress } from "@/components/ui/8bit-progress";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 retro">
<Progress value={62} className="w-80" />
</div>
);
}