import { useTranslation } from 'react-i18next'; import { Box, Button, Typography } from '@mui/material'; import { Edit2 } from 'iconsax-reactjs'; import DigitInput from '@/components/components/DigitsInput'; interface SmsOtpProps { value: string; type: 'phone' | 'email'; } export function SmsOtpForm({ value, type }: SmsOtpProps) { const { t } = useTranslation('authentication'); return ( اعتبارسنجی کد تایید ۴ رقمی به شماره موبایل شما ارسال شد. لطفا آن را وارد کنید. console.log(value)} /> ); }