UNPKG

react-cascader-popover

Version:
10 lines (9 loc) 361 B
/// <reference types="react" /> import "../index.css"; interface CheckboxProps { checked?: boolean; indeterminate?: boolean; onClick?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void; } declare const Checkbox: ({ checked, indeterminate, onClick }: CheckboxProps) => import("react/jsx-runtime").JSX.Element; export default Checkbox;