bananas-commerce-admin
Version:
What's this, an admin for apes?
10 lines • 519 B
JavaScript
import React from "react";
import { TableCell, Typography } from "@mui/material";
export const TableHeading = ({ children, typographyProps, ...props }) => (React.createElement(TableCell, { ...props },
React.createElement(Typography, { ...typographyProps, sx: {
fontWeight: "600",
fontVariationSettings: { sm: '"wdth" 100', xs: '"wdth" 75' },
...typographyProps?.sx,
}, variant: "body2" }, children)));
export default TableHeading;
//# sourceMappingURL=TableHeading.js.map