UNPKG

hightable

Version:

A dynamic windowed scrolling table component for react

15 lines (14 loc) 513 B
import { CSSProperties, ReactNode } from 'react'; interface Props { busy?: boolean; checked?: boolean; children?: ReactNode; onCheckboxPress?: (shiftKey: boolean) => void; showCheckBox?: boolean; style?: CSSProperties; ariaColIndex: number; ariaRowIndex: number; dataRowIndex?: number; } export default function RowHeader({ children, checked, onCheckboxPress, style, busy, ariaColIndex, ariaRowIndex, dataRowIndex }: Props): import("react/jsx-runtime").JSX.Element; export {};