UNPKG

@ackplus/react-tanstack-data-table

Version:

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

14 lines 520 B
import { TableRowProps, TableCellProps, SxProps } from '@mui/material'; import { ReactElement, ReactNode } from 'react'; export interface EmptyDataRowProps { colSpan: number; message: string | ReactNode; rowProps?: TableRowProps; cellProps?: TableCellProps; containerSx?: SxProps; messageSx?: SxProps; slots?: Record<string, any>; slotProps?: Record<string, any>; } export declare function EmptyDataRow(props: EmptyDataRowProps): ReactElement; //# sourceMappingURL=empty-data-row.d.ts.map