import { ReactNode } from 'react' type Props = { children: ReactNode type: 'checkbox' | 'radio' | 'switch' label?: string className?: string } const FormCheckRadio = (props: Props) => { return ( ) } export default FormCheckRadio