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 e2a8f6ba_b2d9_08d3_f234_bb3e3e24aeec["switch.tsx"] 1d141819_425e_b5fd_4c8e_32f7c6a42cf2["react"] e2a8f6ba_b2d9_08d3_f234_bb3e3e24aeec --> 1d141819_425e_b5fd_4c8e_32f7c6a42cf2 9a55a784_e3f2_5154_8899_5377b1826058["react-switch"] e2a8f6ba_b2d9_08d3_f234_bb3e3e24aeec --> 9a55a784_e3f2_5154_8899_5377b1826058 79081a1f_55a3_945a_fb8c_d53d6d3eab81["utils"] e2a8f6ba_b2d9_08d3_f234_bb3e3e24aeec --> 79081a1f_55a3_945a_fb8c_d53d6d3eab81 style e2a8f6ba_b2d9_08d3_f234_bb3e3e24aeec 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-5 w-9 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent shadow-sm 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-4 w-4 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-4 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/new-york/ui/switch.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/registry/new-york/ui).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free