UNPKG

mantine-react-table

Version:

A fully featured Mantine implementation of TanStack React Table V8, written from the ground up in TypeScript.

12 lines (11 loc) 344 B
import { FC } from 'react'; import type { VirtualItem } from '@tanstack/react-virtual'; import type { MRT_TableInstance } from '..'; interface Props { table: MRT_TableInstance; virtualColumns?: VirtualItem[]; virtualPaddingLeft?: number; virtualPaddingRight?: number; } export declare const MRT_TableHead: FC<Props>; export {};