import { InputOTP, InputOTPWithSeparator } from '@/components/ui/input-otp'; import { Text } from '@/components/ui/text'; import { View } from '@/components/ui/view'; import { useColor } from '@/hooks/useColor'; import React, { useState } from 'react'; export function InputOTPSeparator() { const [otp1, setOtp1] = useState(''); const [otp2, setOtp2] = useState(''); const [otp3, setOtp3] = useState(''); const muted = useColor('textMuted'); return ( With Dash Separator With Dot Separator • } /> With Custom Separator } /> ); }