Home / File/ checkbox.tsx — ui Source File

checkbox.tsx — ui Source File

Architecture documentation for checkbox.tsx, a tsx file in the ui codebase. 3 imports, 0 dependents.

File tsx DocumentationAtlas SearchAPI 3 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  01a6b6ef_6a8c_cb53_39f9_00794f76b45c["checkbox.tsx"]
  3d9438e8_7604_787c_4898_907262aff28b["utils"]
  01a6b6ef_6a8c_cb53_39f9_00794f76b45c --> 3d9438e8_7604_787c_4898_907262aff28b
  b9466862_a837_22e9_4a17_e3a41c88d18b["checkbox"]
  01a6b6ef_6a8c_cb53_39f9_00794f76b45c --> b9466862_a837_22e9_4a17_e3a41c88d18b
  d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3["lucide-react"]
  01a6b6ef_6a8c_cb53_39f9_00794f76b45c --> d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3
  style 01a6b6ef_6a8c_cb53_39f9_00794f76b45c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

"use client"

import { cn } from "@/examples/base/lib/utils"
import { Checkbox as CheckboxPrimitive } from "@base-ui/react/checkbox"
import { CheckIcon } from "lucide-react"

function Checkbox({ className, ...props }: CheckboxPrimitive.Root.Props) {
  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>
  )
}

export { Checkbox }

Subdomains

Functions

Dependencies

  • checkbox
  • lucide-react
  • utils

Frequently Asked Questions

What does checkbox.tsx do?
checkbox.tsx is a source file in the ui codebase, written in tsx. It belongs to the DocumentationAtlas domain, SearchAPI subdomain.
What functions are defined in checkbox.tsx?
checkbox.tsx defines 1 function(s): Checkbox.
What does checkbox.tsx depend on?
checkbox.tsx imports 3 module(s): checkbox, lucide-react, utils.
Where is checkbox.tsx in the architecture?
checkbox.tsx is located at apps/v4/examples/base/ui-rtl/checkbox.tsx (domain: DocumentationAtlas, subdomain: SearchAPI, directory: apps/v4/examples/base/ui-rtl).

Analyze Your Own Codebase

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

Try Supermodel Free