UNPKG

@ackplus/react-tanstack-data-table

Version:

A powerful React data table component built with MUI and TanStack Table

14 lines 497 B
import { ReactElement } from 'react'; import { TableRowProps, TableCellProps, SxProps } from '@mui/material'; export interface LoadingRowsProps { rowCount?: number; rowProps?: TableRowProps; cellProps?: TableCellProps; skeletonProps?: any; containerSx?: SxProps; slots?: Record<string, any>; slotProps?: Record<string, any>; [key: string]: any; } export declare function LoadingRows(props: LoadingRowsProps): ReactElement; //# sourceMappingURL=loading-rows.d.ts.map