bananas-commerce-admin
Version:
What's this, an admin for apes?
12 lines • 437 B
JavaScript
import { styled } from "@mui/material/styles";
import MuiTableContainer from "@mui/material/TableContainer";
export const TableCard = styled(MuiTableContainer)(({ theme }) => theme.unstable_sx({
boxShadow: 0,
borderRadius: 3,
borderWidth: "1px",
borderStyle: "solid",
borderColor: theme.palette.divider,
bgcolor: theme.palette.background.paper,
}));
export default TableCard;
//# sourceMappingURL=TableCard.js.map