mantine-react-table
Version:
A fully featured Mantine implementation of TanStack React Table V8, written from the ground up in TypeScript.
9 lines (8 loc) • 445 B
TypeScript
/// <reference types="react" />
import { ActionIconProps } from '@mantine/core';
import type { HTMLPropsRef, MRT_TableInstance } from '..';
interface Props<TData extends Record<string, any> = {}> extends ActionIconProps, HTMLPropsRef<HTMLButtonElement> {
table: MRT_TableInstance<TData>;
}
export declare const MRT_ToggleFullScreenButton: <TData extends Record<string, any> = {}>({ table, ...rest }: Props<TData>) => JSX.Element;
export {};