ZuploZuplo
LoginSign Up
  • Documentation
  • API Reference
Introduction
Getting Started
    Develop using the Portal
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth4 - Deploy5 - Dynamic Rate LimitingMCP - Quick start
    Develop Locally
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth
Concepts
Development
Policies
Handlers
API Keys
MCP Server
MCP Gateway
AI Gateway
Developer Portal
    IntroductionLocal DevelopmentUpdating VersionsNode Modules & Customization
    Configuration
    Writing
    OpenAPI
    Authentication
    Integrations
    Guides
    Extending
    Components
      General
      Documentation
      Form
        ButtonCheckboxSliderSwitchLabel
      Utility
Monetization
Deploying & Source Control
Observability
Networking & Infrastructure
Account Management
Programming API
Build with AI
Zuplo CLI
Migration Guides
Platform LimitsSecuritySupportTrust & ComplianceChangelog
powered by Zudoku
Form

Checkbox

A checkbox component built on Radix UI primitives for boolean input.

Import

Code
import { Checkbox } from "zudoku/ui/Checkbox";

Basic Usage

Code
<Checkbox />

With Label

Code
<div className="flex items-center space-x-2"> <Checkbox id="terms" /> <Label htmlFor="terms">Accept terms and conditions</Label> </div>

Checked State

Code
<div className="flex items-center space-x-2"> <Checkbox id="terms2" defaultChecked /> <Label htmlFor="terms2">Accept terms and conditions</Label> </div>

Disabled State

Code
<div className="flex items-center space-x-2"> <Checkbox id="terms3" disabled /> <Label htmlFor="terms3">Accept terms and conditions</Label> </div>

Features

  • Accessibility: Full keyboard navigation and screen reader support
  • Indeterminate State: Supports indeterminate state for partial selections
  • Controlled/Uncontrolled: Can be used with or without state management
  • Customizable: Easy to style with className prop
Edit this page
Last modified on May 29, 2026
ButtonSlider
On this page
  • Import
  • Basic Usage
  • With Label
  • Checked State
  • Disabled State
  • Features
React
React
React
React
React