30 lines
693 B
TypeScript
30 lines
693 B
TypeScript
// form
|
|
import { useFormContext, Controller } from 'react-hook-form';
|
|
// @mui
|
|
import { Switch, FormControlLabel, FormControlLabelProps } from '@mui/material';
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
type IProps = Omit<FormControlLabelProps, 'control'>;
|
|
|
|
interface Props extends IProps {
|
|
name: string;
|
|
}
|
|
|
|
export default function RHFSwitch({ name, ...other }: Props) {
|
|
const { control } = useFormContext();
|
|
|
|
return (
|
|
<FormControlLabel
|
|
control={
|
|
<Controller
|
|
name={name}
|
|
control={control}
|
|
render={({ field }) => <Switch {...field} checked={field.value} />}
|
|
/>
|
|
}
|
|
{...other}
|
|
/>
|
|
);
|
|
}
|