switch.tsx — ui Source File
Architecture documentation for switch.tsx, a tsx file in the ui codebase. 3 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR b43790a2_fcc9_fe8f_24ba_d9e1f5b1ce99["switch.tsx"] 1d141819_425e_b5fd_4c8e_32f7c6a42cf2["react"] b43790a2_fcc9_fe8f_24ba_d9e1f5b1ce99 --> 1d141819_425e_b5fd_4c8e_32f7c6a42cf2 9a55a784_e3f2_5154_8899_5377b1826058["react-switch"] b43790a2_fcc9_fe8f_24ba_d9e1f5b1ce99 --> 9a55a784_e3f2_5154_8899_5377b1826058 79081a1f_55a3_945a_fb8c_d53d6d3eab81["utils"] b43790a2_fcc9_fe8f_24ba_d9e1f5b1ce99 --> 79081a1f_55a3_945a_fb8c_d53d6d3eab81 style b43790a2_fcc9_fe8f_24ba_d9e1f5b1ce99 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
"use client"
import * as React from "react"
import * as SwitchPrimitives from "@radix-ui/react-switch"
import { cn } from "@/lib/utils"
const Switch = React.forwardRef<
React.ElementRef<typeof SwitchPrimitives.Root>,
React.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root>
>(({ className, ...props }, ref) => (
<SwitchPrimitives.Root
className={cn(
"peer inline-flex h-6 w-11 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input",
className
)}
{...props}
ref={ref}
>
<SwitchPrimitives.Thumb
className={cn(
"pointer-events-none block h-5 w-5 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-5 data-[state=unchecked]:translate-x-0"
)}
/>
</SwitchPrimitives.Root>
))
Switch.displayName = SwitchPrimitives.Root.displayName
export { Switch }
Domain
Subdomains
Functions
Dependencies
- react
- react-switch
- utils
Source
Frequently Asked Questions
What does switch.tsx do?
switch.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 switch.tsx?
switch.tsx defines 1 function(s): Switch.
What does switch.tsx depend on?
switch.tsx imports 3 module(s): react, react-switch, utils.
Where is switch.tsx in the architecture?
switch.tsx is located at deprecated/www/registry/default/ui/switch.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/registry/default/ui).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free