UNPKG

react-tri-state-checkbox

Version:
9 lines (8 loc) 194 B
import React from 'react'; export interface IProps { id: string; checked: boolean; render?: (props: any) => any; } declare const Checkbox: React.FC<IProps>; export default Checkbox;