UNPKG

hightable

Version:

A dynamic windowed scrolling table component for react

17 lines (16 loc) 591 B
import { MouseEvent, ReactNode } from 'react'; import { Direction } from '../../helpers/sort.js'; interface Props { columnIndex: number; children?: ReactNode; dataReady?: boolean; direction?: Direction; onClick?: (e: MouseEvent) => void; title?: string; sortable?: boolean; ariaPosInSet?: number; ariaSetSize?: number; className?: string; } export default function ColumnHeader({ columnIndex, dataReady, direction, onClick, title, sortable, ariaPosInSet, ariaSetSize, className, children }: Props): import("react/jsx-runtime").JSX.Element; export {};