A control that allows the user to toggle between checked and not checked.
npx ghost-ui-native add checkbox
import { Checkbox } from '@/components/ui/checkbox';
const [checked, setChecked] = useState(false) <Checkbox checked={checked} onCheckedChange={setChecked} />