A control that allows the user to toggle between checked and not checked.
import { Checkbox, CheckboxRoot, CheckboxIndicator } from "@/components/ui/checkbox";
// Option #1. Basic usage:
<Checkbox />
// Option #2. Custom usage:
<CheckboxRoot>
<CheckboxIndicator />
</CheckboxRoot>