UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

10 lines (9 loc) 395 B
import React, { PropsWithChildren } from "react"; import { TableCellProps, TypographyProps } from "@mui/material"; export interface TableHeadingProps extends PropsWithChildren<TableCellProps> { typographyProps?: TypographyProps; popover?: React.ReactNode; popoverLabel?: React.ReactNode; } export declare const TableHeading: React.FC<TableHeadingProps>; export default TableHeading;