import React from 'react' import clsx from 'clsx' import { FieldRenderProps } from 'react-final-form' import { Styles } from '.' export interface SwitchProps extends FieldRenderProps { styles: Styles } export const Switch: React.FC = ({ children, input, meta, styles, ...rest }) => { const key = `switch-${input.name}` return (