Home / File/ input-otp.tsx — ui Source File

input-otp.tsx — ui Source File

Architecture documentation for input-otp.tsx, a tsx file in the ui codebase. 4 imports, 0 dependents.

File tsx ComponentRegistry ChartRegistry 4 imports 4 functions

Entity Profile

Dependency Diagram

graph LR
  80231c48_9bba_9ea2_4429_cff9f19a0dda["input-otp.tsx"]
  1d141819_425e_b5fd_4c8e_32f7c6a42cf2["react"]
  80231c48_9bba_9ea2_4429_cff9f19a0dda --> 1d141819_425e_b5fd_4c8e_32f7c6a42cf2
  46c758ca_dd64_66c4_37b9_b30acc3c853c["input-otp"]
  80231c48_9bba_9ea2_4429_cff9f19a0dda --> 46c758ca_dd64_66c4_37b9_b30acc3c853c
  d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3["lucide-react"]
  80231c48_9bba_9ea2_4429_cff9f19a0dda --> d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3
  79081a1f_55a3_945a_fb8c_d53d6d3eab81["utils"]
  80231c48_9bba_9ea2_4429_cff9f19a0dda --> 79081a1f_55a3_945a_fb8c_d53d6d3eab81
  style 80231c48_9bba_9ea2_4429_cff9f19a0dda fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

"use client"

import * as React from "react"
import { OTPInput, OTPInputContext } from "input-otp"
import { Dot } from "lucide-react"

import { cn } from "@/lib/utils"

const InputOTP = React.forwardRef<
  React.ElementRef<typeof OTPInput>,
  React.ComponentPropsWithoutRef<typeof OTPInput>
>(({ className, containerClassName, ...props }, ref) => (
  <OTPInput
    ref={ref}
    containerClassName={cn(
      "flex items-center gap-2 has-[:disabled]:opacity-50",
      containerClassName
    )}
    className={cn("disabled:cursor-not-allowed", className)}
    {...props}
  />
))
InputOTP.displayName = "InputOTP"

const InputOTPGroup = React.forwardRef<
  React.ElementRef<"div">,
  React.ComponentPropsWithoutRef<"div">
>(({ className, ...props }, ref) => (
  <div ref={ref} className={cn("flex items-center", className)} {...props} />
))
InputOTPGroup.displayName = "InputOTPGroup"

const InputOTPSlot = React.forwardRef<
  React.ElementRef<"div">,
  React.ComponentPropsWithoutRef<"div"> & { index: number }
>(({ index, className, ...props }, ref) => {
  const inputOTPContext = React.useContext(OTPInputContext)
  const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index]

  return (
    <div
      ref={ref}
      className={cn(
        "relative flex h-10 w-10 items-center justify-center border-y border-r border-input text-sm transition-all first:rounded-l-md first:border-l last:rounded-r-md",
        isActive && "z-10 ring-2 ring-ring ring-offset-background",
        className
      )}
      {...props}
    >
      {char}
      {hasFakeCaret && (
        <div className="pointer-events-none absolute inset-0 flex items-center justify-center">
          <div className="h-4 w-px animate-caret-blink bg-foreground duration-1000" />
        </div>
      )}
    </div>
  )
})
InputOTPSlot.displayName = "InputOTPSlot"

const InputOTPSeparator = React.forwardRef<
  React.ElementRef<"div">,
  React.ComponentPropsWithoutRef<"div">
>(({ ...props }, ref) => (
  <div ref={ref} role="separator" {...props}>
    <Dot />
  </div>
))
InputOTPSeparator.displayName = "InputOTPSeparator"

export { InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator }

Subdomains

Dependencies

  • input-otp
  • lucide-react
  • react
  • utils

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 deprecated/www/registry/default/ui/input-otp.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