import { useFormContext, Controller } from 'react-hook-form'; // @mui import FormHelperText from '@mui/material/FormHelperText'; // import { UploadAvatar, Upload, UploadBox, UploadProps } from '../upload'; // ---------------------------------------------------------------------- interface Props extends Omit { name: string; multiple?: boolean; } // ---------------------------------------------------------------------- export function RHFUploadAvatar({ name, ...other }: Props) { const { control } = useFormContext(); return ( (
{!!error && ( {error.message} )}
)} /> ); } // ---------------------------------------------------------------------- export function RHFUploadBox({ name, ...other }: Props) { const { control } = useFormContext(); return ( ( )} /> ); } // ---------------------------------------------------------------------- export function RHFUpload({ name, multiple, helperText, ...other }: Props) { const { control } = useFormContext(); return ( multiple ? ( {error ? error?.message : helperText} ) } {...other} /> ) : ( {error ? error?.message : helperText} ) } {...other} /> ) } /> ); }