source: src/components/hook-form/rhf-code.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.0 KB
Line 
1import { Controller, useFormContext } from 'react-hook-form';
2import { MuiOtpInput, MuiOtpInputProps } from 'mui-one-time-password-input';
3// @mui
4import FormHelperText from '@mui/material/FormHelperText';
5
6// ----------------------------------------------------------------------
7
8type RHFCodesProps = MuiOtpInputProps & {
9 name: string;
10};
11
12export default function RHFCode({ name, ...other }: RHFCodesProps) {
13 const { control } = useFormContext();
14
15 return (
16 <Controller
17 name={name}
18 control={control}
19 render={({ field, fieldState: { error } }) => (
20 <div>
21 <MuiOtpInput
22 {...field}
23 autoFocus
24 gap={1.5}
25 length={6}
26 TextFieldsProps={{
27 error: !!error,
28 placeholder: '-',
29 }}
30 {...other}
31 />
32
33 {error && (
34 <FormHelperText sx={{ px: 2 }} error>
35 {error.message}
36 </FormHelperText>
37 )}
38 </div>
39 )}
40 />
41 );
42}
Note: See TracBrowser for help on using the repository browser.