Home / Function/ Checkbox() — ui Function Reference

Checkbox() — ui Function Reference

Architecture documentation for the Checkbox() function in checkbox.tsx from the ui codebase.

Entity Profile

Dependency Diagram

graph TD
  364cdd21_51db_6575_ff41_a6fcf00931c5["Checkbox()"]
  681e7c7c_33a8_d35b_03a1_dea97c823608["checkbox.tsx"]
  364cdd21_51db_6575_ff41_a6fcf00931c5 -->|defined in| 681e7c7c_33a8_d35b_03a1_dea97c823608
  style 364cdd21_51db_6575_ff41_a6fcf00931c5 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/v4/examples/radix/ui-rtl/checkbox.tsx lines 8–29

function Checkbox({
  className,
  ...props
}: React.ComponentProps<typeof CheckboxPrimitive.Root>) {
  return (
    <CheckboxPrimitive.Root
      data-slot="checkbox"
      className={cn(
        "border-input dark:bg-input/30 data-checked:bg-primary data-checked:text-primary-foreground dark:data-checked:bg-primary data-checked:border-primary aria-invalid:aria-checked:border-primary aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 peer relative flex size-4 shrink-0 items-center justify-center rounded-[4px] border transition-colors outline-none group-has-disabled/field:opacity-50 after:absolute after:-inset-x-3 after:-inset-y-2 focus-visible:ring-3 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:ring-3",
        className
      )}
      {...props}
    >
      <CheckboxPrimitive.Indicator
        data-slot="checkbox-indicator"
        className="grid place-content-center text-current transition-none [&>svg]:size-3.5"
      >
        <CheckIcon />
      </CheckboxPrimitive.Indicator>
    </CheckboxPrimitive.Root>
  )
}

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free