Pixel-art button from 8bitcn.com — wraps shadcn/ui Button with a retro variant (Press Start 2P font, hard-edge pixel borders). Drop-in API-compatible replacement.
"use client"; import { Button } from "@/components/ui/8bit-button"; export default function Default() { return ( <div className="flex w-full min-h-screen items-center justify-center bg-background p-8 overflow-hidden"> <Button>Press Start</Button> </div> ); }
Part of 8bitcn — browse the full library on 21st.dev.