import { OTPInput, OTPInputSlots } from "@/components/ui/otp-input"export function VerificationCode() {
return (
<OTPInput
length={6}
label="Verification code"
description="Enter the code sent to your device."
onValueComplete={(code) => console.log(code)}
>
<OTPInputSlots separatorAfter={3} />
</OTPInput>
)
}