Home / File/ toggle.tsx — ui Source File

toggle.tsx — ui Source File

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

File tsx DocumentationAtlas Changelog 3 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  28780a0e_323c_33a7_a947_f781cf6f3f22["toggle.tsx"]
  3d9438e8_7604_787c_4898_907262aff28b["utils"]
  28780a0e_323c_33a7_a947_f781cf6f3f22 --> 3d9438e8_7604_787c_4898_907262aff28b
  8014e1e4_19c1_40dc_68ec_b28df439b8ed["toggle"]
  28780a0e_323c_33a7_a947_f781cf6f3f22 --> 8014e1e4_19c1_40dc_68ec_b28df439b8ed
  25383e8d_ca91_a50e_c3a8_5f228d02e1df["class-variance-authority"]
  28780a0e_323c_33a7_a947_f781cf6f3f22 --> 25383e8d_ca91_a50e_c3a8_5f228d02e1df
  style 28780a0e_323c_33a7_a947_f781cf6f3f22 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

"use client"

import { cn } from "@/examples/base/lib/utils"
import { Toggle as TogglePrimitive } from "@base-ui/react/toggle"
import { cva, type VariantProps } from "class-variance-authority"

const toggleVariants = cva(
  "hover:text-foreground aria-pressed:bg-muted focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive data-[state=on]:bg-muted gap-1 rounded-lg text-sm font-medium transition-all [&_svg:not([class*='size-'])]:size-4 group/toggle hover:bg-muted inline-flex items-center justify-center whitespace-nowrap outline-none focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0",
  {
    variants: {
      variant: {
        default: "bg-transparent",
        outline: "border-input hover:bg-muted border bg-transparent",
      },
      size: {
        default: "h-8 min-w-8 px-2",
        sm: "h-7 min-w-7 rounded-[min(var(--radius-md),12px)] px-1.5 text-[0.8rem]",
        lg: "h-9 min-w-9 px-2.5",
      },
    },
    defaultVariants: {
      variant: "default",
      size: "default",
    },
  }
)

function Toggle({
  className,
  variant = "default",
  size = "default",
  ...props
}: TogglePrimitive.Props & VariantProps<typeof toggleVariants>) {
  return (
    <TogglePrimitive
      data-slot="toggle"
      className={cn(toggleVariants({ variant, size, className }))}
      {...props}
    />
  )
}

export { Toggle, toggleVariants }

Subdomains

Functions

Dependencies

  • class-variance-authority
  • toggle
  • utils

Frequently Asked Questions

What does toggle.tsx do?
toggle.tsx is a source file in the ui codebase, written in tsx. It belongs to the DocumentationAtlas domain, Changelog subdomain.
What functions are defined in toggle.tsx?
toggle.tsx defines 1 function(s): Toggle.
What does toggle.tsx depend on?
toggle.tsx imports 3 module(s): class-variance-authority, toggle, utils.
Where is toggle.tsx in the architecture?
toggle.tsx is located at apps/v4/examples/base/ui-rtl/toggle.tsx (domain: DocumentationAtlas, subdomain: Changelog, 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