synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
14 lines (13 loc) • 429 B
TypeScript
import React from 'react';
export declare type CheckboxProps = {
label: string;
checked?: boolean;
className?: string;
onChange: (newValue: boolean) => void;
isSelectAll?: boolean;
children?: React.ReactChild;
onClick?: (event: React.SyntheticEvent<HTMLDivElement>) => void;
disabled?: boolean;
'data-testid'?: string;
};
export declare const Checkbox: React.FunctionComponent<CheckboxProps>;