import React from "react"; import { TableCell as MuiTableCell, TableCellProps as MuiTableCellProps, Typography, TypographyProps, } from "@mui/material"; export interface TableCellProps extends React.PropsWithChildren { typographyProps?: TypographyProps; } export const TableCell: React.FC = ({ children, typographyProps, ...props }) => ( {children} );