UNPKG

hightable

Version:

A dynamic windowed scrolling table component for react

16 lines (15 loc) 531 B
import { CSSProperties } from 'react'; interface Props { selected?: boolean; rowNumber?: number; onCheckboxPress?: ({ shiftKey }: { shiftKey: boolean; }) => void; pendingSelectionGesture?: boolean; showCheckBox?: boolean; style?: CSSProperties; ariaColIndex: number; ariaRowIndex: number; } export default function RowHeader({ onCheckboxPress, pendingSelectionGesture, style, ariaColIndex, ariaRowIndex, selected, rowNumber }: Props): import("react/jsx-runtime").JSX.Element; export {};