Components
Loading preview...
Pixel-art label from 8bitcn.com — wraps shadcn/ui Label with Press Start 2P retro variant for form fields.
npx shadcn@latest add https://21st.dev/r/theorcdev/8bit-label"use client";
import { Label } from "@/components/ui/8bit-label";
export default function Default() {
return (
<div className="flex flex-col w-full min-h-screen items-center justify-center gap-2 bg-background p-8 retro">
<Label htmlFor="player">Player Name</Label>
<input id="player" placeholder="Type here…" className="border-2 border-foreground px-3 py-2 bg-background text-foreground w-72" />
</div>
);
}