UNPKG

hightable

Version:

A dynamic windowed scrolling table component for react

11 lines (10 loc) 376 B
import { CSSProperties, MouseEvent, ReactNode } from 'react'; interface Props { checked?: boolean; children?: ReactNode; onClick?: (event: MouseEvent) => void; showCheckBox?: boolean; style?: CSSProperties; } export default function RowHeader({ children, checked, onClick, showCheckBox, style }: Props): import("react/jsx-runtime").JSX.Element; export {};