UNPKG

@teamsnap/teamsnap-ui

Version:

a CSS component library for TeamSnap

20 lines (19 loc) 548 B
import * as React from 'react'; interface ExpandableList { heading: string; subheading: string; tags: React.ReactNode[]; rows: string[]; } declare type Props = { className?: string; mods?: string; list: ExpandableList[]; label: string; activeRows: string[]; headerStatus: object; setActiveRows: React.Dispatch<React.SetStateAction<{}>>; setHeaderStatus: React.Dispatch<React.SetStateAction<{}>>; }; declare const ToggleCheckboxList: React.FunctionComponent<Props>; export default ToggleCheckboxList;