import type { BaseElementProps } from './types'; import type { SwitchProps } from 'antd'; import { Form, Switch as AntSwitch } from 'antd'; import type { FC } from 'react'; const { Item: FormItem } = Form; function Switch({ value, setValue, status, isValid, help, ...props }: BaseElementProps) { return ( ); } export default Switch as FC;