import { InputOTP, InputOTPGroup, InputOTPSlot } from '@/components/ui/input-otp'; import { REGEXP_ONLY_DIGITS } from 'input-otp'; interface Props { value: string; onChange: (value: string) => void; } export const OTPInput = ({ value, onChange }: Props) => { return ( ); };