Glitchcn

Checkbox

Toggle control with the project's emerald/dark aesthetic

Preview
Installation
npx shadcn@latest add @glitchcn/checkbox
Usage
import { Checkbox } from "@/components/ui/checkbox"

// Basic usage
<label>
  <Checkbox />
  <span>Enable feature</span>
</label>

// Checked or disabled
<Checkbox defaultChecked />
<Checkbox disabled />