import { type FC } from 'react' import { type DashboardData } from '../types/Types' import { Box, ShoppingCart, Message, User } from 'iconsax-react' import StatCard from './StatCard' const DashboardOverview: FC<{ data?: DashboardData }> = ({ data }) => { if (!data) return null return (