bananas-commerce-admin
Version:
What's this, an admin for apes?
8 lines (7 loc) • 328 B
TypeScript
import React, { PropsWithChildren } from "react";
import { TableCellProps, TypographyProps } from "@mui/material";
export interface TableHeadingProps extends PropsWithChildren<TableCellProps> {
typographyProps?: TypographyProps;
}
export declare const TableHeading: React.FC<TableHeadingProps>;
export default TableHeading;