@vchatcloud/react-ui-kit
Version:
VChatCloud UI Kit for react integration
9 lines (8 loc) • 322 B
TypeScript
interface CheckboxProps {
readonly className?: string;
readonly label?: string;
readonly checked: boolean;
readonly onChange: (checked: boolean) => void;
}
declare const Checkbox: ({ className, label, checked, onChange }: CheckboxProps) => import("react/jsx-runtime").JSX.Element;
export default Checkbox;