import { Controller, useFormContext } from 'react-hook-form'; import { MuiOtpInput, MuiOtpInputProps } from 'mui-one-time-password-input'; // @mui import FormHelperText from '@mui/material/FormHelperText'; // ---------------------------------------------------------------------- type RHFCodesProps = MuiOtpInputProps & { name: string; }; export default function RHFCode({ name, ...other }: RHFCodesProps) { const { control } = useFormContext(); return ( (
{error && ( {error.message} )}
)} /> ); }