material-react-table
Version:
A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.
23 lines (22 loc) • 542 B
TypeScript
import { FC } from 'react';
import { MRT_TableInstance } from '..';
import type { Theme } from '@mui/material/styles';
export declare const commonToolbarStyles: ({ theme }: {
theme: Theme;
}) => {
alignItems: string;
backgroundColor: string;
backgroundImage: string;
display: string;
flexWrap: string;
minHeight: string;
overflow: string;
p: string;
transition: string;
zIndex: number;
};
interface Props {
table: MRT_TableInstance;
}
export declare const MRT_TopToolbar: FC<Props>;
export {};