Checkbox
Install
Section titled “Install”npx stylesheet-ui add checkboximport { useState } from "react";import { Checkbox } from "@/components/ui/checkbox";
const [accepted, setAccepted] = useState(false);
<Checkbox checked={accepted} onCheckedChange={setAccepted} label="I accept the terms"/>