UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

14 lines 475 B
import { BoxProps } from '@mui/material'; export type SkeletonTableProps = BoxProps & { numRows?: number; numCols?: number; rowHeight?: string; fullWidthCells?: boolean; }; /** * Skeleton component designed to mimic a table with an arbitrary number of rows and columns. * * Implemented using CSS grid. */ export declare function SkeletonTable(props: SkeletonTableProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=SkeletonTable.d.ts.map