toggle.tsx — ui Source File
Architecture documentation for toggle.tsx, a tsx file in the ui codebase. 4 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR b2b1a1ea_d960_91d7_7db3_07be35c6490a["toggle.tsx"] 1d141819_425e_b5fd_4c8e_32f7c6a42cf2["react"] b2b1a1ea_d960_91d7_7db3_07be35c6490a --> 1d141819_425e_b5fd_4c8e_32f7c6a42cf2 25383e8d_ca91_a50e_c3a8_5f228d02e1df["class-variance-authority"] b2b1a1ea_d960_91d7_7db3_07be35c6490a --> 25383e8d_ca91_a50e_c3a8_5f228d02e1df 9c463da6_747b_38dc_586b_cbb4873070b1["radix-ui"] b2b1a1ea_d960_91d7_7db3_07be35c6490a --> 9c463da6_747b_38dc_586b_cbb4873070b1 ef4051f4_aeb7_8d0c_a726_0ba96ad80cf6["utils"] b2b1a1ea_d960_91d7_7db3_07be35c6490a --> ef4051f4_aeb7_8d0c_a726_0ba96ad80cf6 style b2b1a1ea_d960_91d7_7db3_07be35c6490a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
"use client"
import * as React from "react"
import { cva, type VariantProps } from "class-variance-authority"
import { Toggle as TogglePrimitive } from "radix-ui"
import { cn } from "@/registry/bases/radix/lib/utils"
const toggleVariants = cva(
"cn-toggle 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: "cn-toggle-variant-default",
outline: "cn-toggle-variant-outline",
},
size: {
default: "cn-toggle-size-default",
sm: "cn-toggle-size-sm",
lg: "cn-toggle-size-lg",
},
},
defaultVariants: {
variant: "default",
size: "default",
},
}
)
function Toggle({
className,
variant = "default",
size = "default",
...props
}: React.ComponentProps<typeof TogglePrimitive.Root> &
VariantProps<typeof toggleVariants>) {
return (
<TogglePrimitive.Root
data-slot="toggle"
className={cn(toggleVariants({ variant, size, className }))}
{...props}
/>
)
}
export { Toggle, toggleVariants }
Domain
Subdomains
Functions
Dependencies
- class-variance-authority
- radix-ui
- react
- utils
Source
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 ComponentRegistry domain, ChartRegistry subdomain.
What functions are defined in toggle.tsx?
toggle.tsx defines 1 function(s): Toggle.
What does toggle.tsx depend on?
toggle.tsx imports 4 module(s): class-variance-authority, radix-ui, react, utils.
Where is toggle.tsx in the architecture?
toggle.tsx is located at apps/v4/registry/bases/radix/ui/toggle.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: apps/v4/registry/bases/radix/ui).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free