import { Box, Typography } from "@mui/material"; import ArrowDropDownIcon from "@mui/icons-material/ArrowDropDown"; import "./StatItem.scss"; export const StatItem = ({ label, value, change, }: { label: string; value: string | number; change: string; }) => ( {label} {value} {/* */} {change} );