UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

9 lines 535 B
import React from "react"; import { TableCell as MuiTableCell, Typography, } from "@mui/material"; export const TableCell = ({ children, typographyProps, ...props }) => (React.createElement(MuiTableCell, { ...props }, React.createElement(Typography, { ...typographyProps, sx: { whiteSpace: "nowrap", fontVariationSettings: { sm: '"wdth" 100', xs: '"wdth" 75' }, ...typographyProps?.sx, }, variant: typographyProps?.variant ?? "body2" }, children))); //# sourceMappingURL=TableCell.js.map