Skip to content

Checkbox

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