UNPKG

react-together-ant-design

Version:

A set of ready-to-use Ant Design components that are synchronized across multiple users in real-time!

8 lines (6 loc) 328 B
import { CheckboxProps } from 'antd'; export interface TriStateCheckboxTogetherProps extends Omit<CheckboxProps, 'checked' | 'onChange'> { rtKey: string; className?: string; } export default function TriStateCheckboxTogether({ rtKey, ...props }: TriStateCheckboxTogetherProps): import("react/jsx-runtime").JSX.Element;