UNPKG

@cmk/fe_utils

Version:
9 lines (7 loc) 322 B
import { BoxProps } from '@mui/material'; import { PropsWithChildren } from 'react'; export type TableComponentProps = { disableTableHeader?: boolean; sx?: BoxProps<'table'>['sx']; }; export declare const TableComponent: (props: PropsWithChildren<TableComponentProps>) => import("react/jsx-runtime").JSX.Element;