import type { CheckboxProps } from 'antd'; import { Checkbox as AntdCheckbox } from 'antd'; export function Checkbox(props: CheckboxProps) { return {props.children}; }