UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

7 lines (6 loc) 297 B
import React from "react"; import { TableCellProps as MuiTableCellProps, TypographyProps } from "@mui/material"; export interface TableCellProps extends React.PropsWithChildren<MuiTableCellProps> { typographyProps?: TypographyProps; } export declare const TableCell: React.FC<TableCellProps>;