UNPKG

easemob-chat-uikit

Version:

![Static Badge](https://img.shields.io/badge/platform-React-green) ![Static Badge](https://img.shields.io/badge/language-typescript-green) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/easemob/Easemob-UIKit-web) ![GitHub last c

16 lines (15 loc) 503 B
import React, { ChangeEvent } from 'react'; export interface CheckboxProps { prefix?: string; id?: string; className?: string; style?: React.CSSProperties; checked?: boolean; defaultChecked?: boolean; disabled?: boolean; children?: React.ReactNode; onChange?(e: ChangeEvent<HTMLInputElement>): void; shape?: 'square' | 'round'; } declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>; export { Checkbox };