23 lines
620 B
TypeScript
23 lines
620 B
TypeScript
// MUI Imports
|
|
import Grid from '@mui/material/Grid2'
|
|
|
|
// Types Imports
|
|
import type { CardStatsCustomerStatsProps } from '@/types/pages/widgetTypes'
|
|
|
|
// Component Imports
|
|
import CustomerStats from '@components/card-statistics/CustomerStats'
|
|
|
|
const CustomerStatisticsCard = ({ customerStatData }: { customerStatData?: CardStatsCustomerStatsProps[] }) => {
|
|
return (
|
|
<Grid container spacing={6}>
|
|
{customerStatData?.map((item, index) => (
|
|
<Grid size={{ xs: 12, md: 6 }} key={index}>
|
|
<CustomerStats {...item} />
|
|
</Grid>
|
|
))}
|
|
</Grid>
|
|
)
|
|
}
|
|
|
|
export default CustomerStatisticsCard
|