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