input-otp.tsx — ui Source File
Architecture documentation for input-otp.tsx, a tsx file in the ui codebase. 4 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 9e2b1c80_9408_ae92_83fe_f879d2454ae1["input-otp.tsx"] 1d141819_425e_b5fd_4c8e_32f7c6a42cf2["react"] 9e2b1c80_9408_ae92_83fe_f879d2454ae1 --> 1d141819_425e_b5fd_4c8e_32f7c6a42cf2 46c758ca_dd64_66c4_37b9_b30acc3c853c["input-otp"] 9e2b1c80_9408_ae92_83fe_f879d2454ae1 --> 46c758ca_dd64_66c4_37b9_b30acc3c853c d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3["lucide-react"] 9e2b1c80_9408_ae92_83fe_f879d2454ae1 --> d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3 79081a1f_55a3_945a_fb8c_d53d6d3eab81["utils"] 9e2b1c80_9408_ae92_83fe_f879d2454ae1 --> 79081a1f_55a3_945a_fb8c_d53d6d3eab81 style 9e2b1c80_9408_ae92_83fe_f879d2454ae1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
"use client"
import * as React from "react"
import { OTPInput, OTPInputContext } from "input-otp"
import { MinusIcon } from "lucide-react"
import { cn } from "@/lib/utils"
function InputOTP({
className,
containerClassName,
...props
}: React.ComponentProps<typeof OTPInput> & {
containerClassName?: string
}) {
return (
<OTPInput
data-slot="input-otp"
containerClassName={cn(
"flex items-center gap-2 has-disabled:opacity-50",
containerClassName
)}
className={cn("disabled:cursor-not-allowed", className)}
{...props}
/>
)
}
function InputOTPGroup({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="input-otp-group"
className={cn("flex items-center", className)}
{...props}
/>
)
}
function InputOTPSlot({
index,
className,
...props
}: React.ComponentProps<"div"> & {
index: number
}) {
const inputOTPContext = React.useContext(OTPInputContext)
const { char, hasFakeCaret, isActive } = inputOTPContext?.slots[index] ?? {}
return (
<div
data-slot="input-otp-slot"
data-active={isActive}
className={cn(
"data-[active=true]:border-ring data-[active=true]:ring-ring/50 data-[active=true]:aria-invalid:ring-destructive/20 dark:data-[active=true]:aria-invalid:ring-destructive/40 aria-invalid:border-destructive data-[active=true]:aria-invalid:border-destructive dark:bg-input/30 border-input relative flex h-9 w-9 items-center justify-center border-y border-r text-sm shadow-xs transition-all outline-none first:rounded-l-md first:border-l last:rounded-r-md data-[active=true]:z-10 data-[active=true]:ring-[3px]",
className
)}
{...props}
>
{char}
{hasFakeCaret && (
<div className="pointer-events-none absolute inset-0 flex items-center justify-center">
<div className="animate-caret-blink bg-foreground h-4 w-px duration-1000" />
</div>
)}
</div>
)
}
function InputOTPSeparator({ ...props }: React.ComponentProps<"div">) {
return (
<div data-slot="input-otp-separator" role="separator" {...props}>
<MinusIcon />
</div>
)
}
export { InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator }
Domain
Subdomains
Dependencies
- input-otp
- lucide-react
- react
- utils
Source
Frequently Asked Questions
What does input-otp.tsx do?
input-otp.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 input-otp.tsx?
input-otp.tsx defines 4 function(s): InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot.
What does input-otp.tsx depend on?
input-otp.tsx imports 4 module(s): input-otp, lucide-react, react, utils.
Where is input-otp.tsx in the architecture?
input-otp.tsx is located at apps/v4/registry/new-york-v4/ui/input-otp.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: apps/v4/registry/new-york-v4/ui).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free