mantine-react-table
Version:
A fully featured Mantine implementation of TanStack React Table V8, written from the ground up in TypeScript.
13 lines (12 loc) • 398 B
TypeScript
import { FC } from 'react';
import type { VirtualItem } from '@tanstack/react-virtual';
import type { MRT_HeaderGroup, MRT_TableInstance } from '..';
interface Props {
headerGroup: MRT_HeaderGroup;
table: MRT_TableInstance;
virtualColumns?: VirtualItem[];
virtualPaddingLeft?: number;
virtualPaddingRight?: number;
}
export declare const MRT_TableHeadRow: FC<Props>;
export {};