Components
Loading preview...
Pixel-art textarea from 8bitcn.com — wraps shadcn/ui Textarea with hard-edge pixel borders and Press Start 2P retro font.
npx shadcn@latest add https://21st.dev/r/theorcdev/8bit-textarea"use client";
import { Textarea } from "@/components/ui/8bit-textarea";
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="w-full max-w-sm">
<Textarea
placeholder="Enter your message"
rows={4}
/>
</div>
</div>
);
}