diff --git a/Client/src/Components/StatBox/index.jsx b/Client/src/Components/StatBox/index.jsx new file mode 100644 index 000000000..84827c826 --- /dev/null +++ b/Client/src/Components/StatBox/index.jsx @@ -0,0 +1,44 @@ +import { Box, Typography } from "@mui/material"; +import { useTheme } from "@mui/material/styles"; + +const StatBox = ({ heading, stat, subHeading, sx }) => { + const theme = useTheme(); + console.log(sx); + return ( + + {heading} + {subHeading} + + ); +}; + +export default StatBox;