@cmk/fe_utils
Version:
frontend utility library
9 lines (7 loc) • 322 B
TypeScript
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;