import { useFormContext, Controller } from 'react-hook-form'; // @mui import Switch from '@mui/material/Switch'; import FormHelperText from '@mui/material/FormHelperText'; import FormControlLabel, { FormControlLabelProps } from '@mui/material/FormControlLabel'; // ---------------------------------------------------------------------- interface Props extends Omit { name: string; helperText?: React.ReactNode; } export default function RHFSwitch({ name, helperText, ...other }: Props) { const { control } = useFormContext(); return ( (
} {...other} /> {(!!error || helperText) && ( {error ? error?.message : helperText} )}
)} /> ); }