Checkbox
Toggle control with the project's emerald/dark aesthetic
Preview
Installation
npx shadcn@latest add @glitchcn/checkboxUsage
import { Checkbox } from "@/components/ui/checkbox"
// Basic usage
<label>
<Checkbox />
<span>Enable feature</span>
</label>
// Checked or disabled
<Checkbox defaultChecked />
<Checkbox disabled />