mantine-react-table
Version:
A fully featured Mantine implementation of TanStack React Table V8, written from the ground up in TypeScript.
10 lines (9 loc) • 430 B
TypeScript
import { type ReactNode } from 'react';
import { type MRT_Cell, type MRT_TableInstance } from '../types';
interface Props<TData extends Record<string, any> = {}> {
cell: MRT_Cell<TData>;
children: ReactNode;
table: MRT_TableInstance<TData>;
}
export declare const MRT_CopyButton: <TData extends Record<string, any> = {}>({ cell, children, table, }: Props<TData>) => import("react/jsx-runtime").JSX.Element;
export {};