Checkbox
A Windows 98 checkbox with an optional inline label.
Preview
Installation
pnpm dlx shadcn@latest add https://react98-ui.vercel.app/r/checkbox.jsonnpx shadcn@latest add https://react98-ui.vercel.app/r/checkbox.jsonyarn dlx shadcn@latest add https://react98-ui.vercel.app/r/checkbox.jsonbunx shadcn@latest add https://react98-ui.vercel.app/r/checkbox.jsonUsage
import { Checkbox } from "@/components/ui/98/checkbox";
export function Example() {
return <Checkbox label="Enabled" defaultChecked />;
}Props
| Prop | Type | Description |
|---|---|---|
label | ReactNode | Optional text or node rendered next to the checkbox. |
... | InputHTMLAttributes<HTMLInputElement> | All native checkbox input attributes pass through. |