UNPKG

mantine-react-table

Version:

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

23 lines (22 loc) 555 B
import { FC } from 'react'; import { MantineTheme } from '@mantine/core'; import type { MRT_TableInstance } from '..'; 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 { table: MRT_TableInstance; } export declare const MRT_TopToolbar: FC<Props>; export {};