UNPKG

material-react-table

Version:

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

21 lines (20 loc) 540 B
import { FC } from 'react'; import type { MRT_Header, MRT_TableInstance } from '..'; export declare const commonMenuItemStyles: { py: string; my: number; justifyContent: string; alignItems: string; }; export declare const commonListItemStyles: { display: string; alignItems: string; }; interface Props { anchorEl: HTMLElement | null; header: MRT_Header; setAnchorEl: (anchorEl: HTMLElement | null) => void; table: MRT_TableInstance; } export declare const MRT_ColumnActionMenu: FC<Props>; export {};