import { useFormContext, Controller } from 'react-hook-form'; // @mui import Radio from '@mui/material/Radio'; import FormLabel from '@mui/material/FormLabel'; import FormControl from '@mui/material/FormControl'; import FormHelperText from '@mui/material/FormHelperText'; import FormControlLabel from '@mui/material/FormControlLabel'; import RadioGroup, { RadioGroupProps } from '@mui/material/RadioGroup'; // ---------------------------------------------------------------------- type Props = RadioGroupProps & { name: string; options: { label: string; value: any }[]; label?: string; spacing?: number; helperText?: React.ReactNode; }; export default function RHFRadioGroup({ row, name, label, options, spacing, helperText, ...other }: Props) { const { control } = useFormContext(); const labelledby = label ? `${name}-${label}` : ''; return ( ( {label && ( {label} )} {options.map((option) => ( } label={option.label} sx={{ '&:not(:last-of-type)': { mb: spacing || 0, }, ...(row && { mr: 0, '&:not(:last-of-type)': { mr: spacing || 2, }, }), }} /> ))} {(!!error || helperText) && ( {error ? error?.message : helperText} )} )} /> ); }