mantine-react-table
Version:
A fully featured Mantine implementation of TanStack React Table V8, written from the ground up in TypeScript.
22 lines (21 loc) • 685 B
TypeScript
import { type MantineTheme } from '@mantine/core';
import { type MRT_TableInstance } from '../types';
export declare const commonToolbarStyles: ({ theme }: {
theme: MantineTheme;
}) => {
alignItems: string;
backgroundColor: string;
backgroundImage: string;
display: string;
flexWrap: string;
minHeight: string;
overflow: string;
padding: string;
transition: string;
zIndex: number;
};
interface Props<TData extends Record<string, any> = {}> {
table: MRT_TableInstance<TData>;
}
export declare const MRT_TopToolbar: <TData extends Record<string, any> = {}>({ table, }: Props<TData>) => import("react/jsx-runtime").JSX.Element;
export {};