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

18 lines 738 B
import { StyledComponent } from '@emotion/styled'; import { BoxProps } from '@mui/material'; export type StyledTableContainerProps = BoxProps & { /** * Controls the padding of the table cells * @default 'default' */ density?: 'default' | 'compact'; /** * Controls whether the rows of the table are striped using CSS. For virtualized tables, this should be set to false, since the * row even/oddness is not guaranteed to be consistent as DOM nodes are loaded and unloaded. * @default false */ noStripedRows?: boolean; ['data-testid']?: string; }; export declare const StyledTableContainer: StyledComponent<StyledTableContainerProps>; //# sourceMappingURL=StyledTableContainer.d.ts.map