import { Box, Card, CardContent, Typography, IconButton, Divider, } from '@mui/material'; import MoreVertIcon from '@mui/icons-material/MoreVert'; import CalendarTodayIcon from '@mui/icons-material/CalendarToday'; import ArrowDropDownIcon from '@mui/icons-material/ArrowDropDown'; // import { ArrowDropUp } from '@mui/icons-material'; const stats = [ { label: 'TOTAL', value: 5, change: '-84.85%' }, { label: 'SUCCESSFUL', value: 10, change: '100%' }, { label: 'ACCEPTANCE RATE', value: '0%', change: '-100%' }, { label: 'AMOUNT', value: '€0.00', change: '-100%' }, { label: 'ATV', value: '€0.00', change: '-100%' }, ]; const StatItem = ({ label, value, change }: { label: string, value: string | number, change: string }) => ( {label} {value} {/* */} {change} ); export const GeneralHealthCard = () => { return ( General Health Last 24h {stats.map((item) => ( ))} ); }