import * as React from 'react'; import { forwardRef } from 'react'; // import { styled } from '@mui/material/styles'; // import FormGroup from '@mui/material/FormGroup'; import FormControlLabel from '@mui/material/FormControlLabel'; import {SwitchStyle} from "./styles" interface SwitchProps { edge?: 'end' | 'start' size?: 'small' | 'medium' color?: 'default' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning' control?: React.ReactNode label?: any sx?:any, handleChange?: any, checked?:boolean, name?:string, toggle?:boolean } const Switch = forwardRef(({edge="end", size="medium", color="primary",checked,label="",handleChange,sx={},name=""}:SwitchProps,ref) => { return ( } label={label} name={name} /> ) }) export default Switch;