Checkbox

Checkboxes allow the user to select one or more items from a set.

Basic Checkboxes

Disabled State

With Second Label

Add a secondary text below the checkbox label for additional context (left aligned).

interface CheckboxProps {
  label?: string;
  secondLabel?: string; // Secondary text below checkbox label (left aligned)
  checked?: boolean;
  onChange?: (checked: boolean) => void;
  disabled?: boolean;
}