Home / Function/ FieldCheckbox() — ui Function Reference

FieldCheckbox() — ui Function Reference

Architecture documentation for the FieldCheckbox() function in field-checkbox.tsx from the ui codebase.

Entity Profile

Dependency Diagram

graph TD
  76cdf5e7_7543_126d_261b_4421d63a4dc8["FieldCheckbox()"]
  4f9562b2_6ece_d2b6_24e4_e22fad3c1d69["field-checkbox.tsx"]
  76cdf5e7_7543_126d_261b_4421d63a4dc8 -->|defined in| 4f9562b2_6ece_d2b6_24e4_e22fad3c1d69
  style 76cdf5e7_7543_126d_261b_4421d63a4dc8 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/v4/examples/radix/field-checkbox.tsx lines 13–78

export function FieldCheckbox() {
  return (
    <FieldGroup className="w-full max-w-xs">
      <FieldSet>
        <FieldLegend variant="label">
          Show these items on the desktop
        </FieldLegend>
        <FieldDescription>
          Select the items you want to show on the desktop.
        </FieldDescription>
        <FieldGroup className="gap-3">
          <Field orientation="horizontal">
            <Checkbox id="finder-pref-9k2-hard-disks-ljj" />
            <FieldLabel
              htmlFor="finder-pref-9k2-hard-disks-ljj"
              className="font-normal"
              defaultChecked
            >
              Hard disks
            </FieldLabel>
          </Field>
          <Field orientation="horizontal">
            <Checkbox id="finder-pref-9k2-external-disks-1yg" />
            <FieldLabel
              htmlFor="finder-pref-9k2-external-disks-1yg"
              className="font-normal"
            >
              External disks
            </FieldLabel>
          </Field>
          <Field orientation="horizontal">
            <Checkbox id="finder-pref-9k2-cds-dvds-fzt" />
            <FieldLabel
              htmlFor="finder-pref-9k2-cds-dvds-fzt"
              className="font-normal"
            >
              CDs, DVDs, and iPods
            </FieldLabel>
          </Field>
          <Field orientation="horizontal">
            <Checkbox id="finder-pref-9k2-connected-servers-6l2" />
            <FieldLabel
              htmlFor="finder-pref-9k2-connected-servers-6l2"
              className="font-normal"
            >
              Connected servers
            </FieldLabel>
          </Field>
        </FieldGroup>
      </FieldSet>
      <FieldSeparator />
      <Field orientation="horizontal">
        <Checkbox id="finder-pref-9k2-sync-folders-nep" defaultChecked />
        <FieldContent>
          <FieldLabel htmlFor="finder-pref-9k2-sync-folders-nep">
            Sync Desktop & Documents folders
          </FieldLabel>
          <FieldDescription>
            Your Desktop & Documents folders are being synced with iCloud Drive.
            You can access them from other devices.
          </FieldDescription>
        </FieldContent>
      </Field>
    </FieldGroup>
  )
}

Subdomains

Frequently Asked Questions

What does FieldCheckbox() do?
FieldCheckbox() is a function in the ui codebase, defined in apps/v4/examples/radix/field-checkbox.tsx.
Where is FieldCheckbox() defined?
FieldCheckbox() is defined in apps/v4/examples/radix/field-checkbox.tsx at line 13.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free