2023-05-16 13:42:46 +03:00

7 lines
211 B
TypeScript

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