agora-classroom-sdk
Version:
For publishing npm package agora-classroom-sdk (Web & Electron). Get more information from https://docs.agora.io
15 lines (14 loc) • 401 B
TypeScript
import { ChangeEvent, FC } from 'react';
import { BaseProps } from '../util/type';
import './index.css';
declare type CheckboxProps = BaseProps & {
text?: string;
value?: any;
checked?: boolean;
disabled?: boolean;
indeterminate?: boolean;
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
gap?: number;
};
export declare const CheckBox: FC<CheckboxProps>;
export {};