UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

10 lines (9 loc) 326 B
import React, { PropsWithChildren } from "react"; import { TableRowProps } from "@mui/material"; export interface TableHeadProps extends PropsWithChildren { title?: string; icon?: React.ReactNode; tableRowProps?: TableRowProps; } export declare const TableHead: React.FC<TableHeadProps>; export default TableHead;