import { Box, Typography, useTheme } from "@mui/material"; import { tokens } from "../theme"; import ProgressCircle from "./ProgressCircle"; const StatBox = ({ title, subtitle, icon, progress, increase }) => { const theme = useTheme(); const colors = tokens(theme.palette.mode); return ( {icon} {title} {subtitle} {increase} ); }; export default StatBox;