Components
Loading preview...
Pixel-art checkbox from 8bitcn.com — chunky pixel border with retro check glyph. Wraps shadcn/ui Checkbox.
npx shadcn@latest add https://21st.dev/r/theorcdev/8bit-checkbox"use client";
import { Checkbox } from "@/components/ui/8bit-checkbox";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 overflow-hidden">
<div className="flex items-center gap-3">
<Checkbox id="terms" defaultChecked />
<label htmlFor="terms" className="text-sm font-pixel cursor-pointer">
Press Start to continue
</label>
</div>
</div>
);
}