import React, { FC } from 'react' import { Switch as MuiSwitch, SwitchProps as MuiSwitchProps } from '@mui/material' import CircleIcon from '@mui/icons-material/Circle' interface SwitchProps extends MuiSwitchProps { size?: 'small' | 'medium', checkedIcon?: React.ReactNode, uncheckedIcon?: React.ReactNode, disabled?: boolean, className?: string } export const Switch: FC = React.forwardRef((props, ref) => { // == Props ================================ const { checkedIcon = , uncheckedIcon = , className = '', size = 'small', disabled = false, ...otherProps } = props // == Hooks ================================ // == Functions ============================ // == Actions ============================== // == Template ============================= return ( ) })