UNPKG

@gzued/antd-compiled

Version:

Pre-bundled Ant Design 4.x and related dependencies for @gzued packages

10 lines (9 loc) 328 B
import * as React from 'react'; export interface CheckboxProps { prefixCls: string; checked?: boolean; halfChecked?: boolean; disabled?: boolean; onClick?: React.MouseEventHandler; } export default function Checkbox({ prefixCls, checked, halfChecked, disabled, onClick, }: CheckboxProps): React.JSX.Element;