// MUI Imports import Card from '@mui/material/Card' import CardHeader from '@mui/material/CardHeader' import CardContent from '@mui/material/CardContent' import Typography from '@mui/material/Typography' // Third-party Imports import classnames from 'classnames' // Components Imports import OptionMenu from '@core/components/option-menu' import CustomAvatar from '@core/components/mui/Avatar' // Types Imports import type { ThemeColor } from '@core/types' type dataTypes = { title: string value: string change: number icon: string color: ThemeColor } const deliveryData: dataTypes[] = [ { title: 'Packages in transit', value: '10k', change: 25.8, icon: 'tabler-box', color: 'primary' }, { title: 'Packages out for delivery', value: '5k', change: 4.3, icon: 'tabler-truck', color: 'info' }, { title: 'Packages delivered', value: '15k', change: -12.5, icon: 'tabler-circle-check', color: 'success' }, { title: 'Delivery success rate', value: '95%', change: 35.6, icon: 'tabler-percentage', color: 'warning' }, { title: 'Average delivery time', value: '2.5 Days', change: -2.15, icon: 'tabler-clock', color: 'secondary' }, { title: 'Customer satisfaction', value: '4.5/5', change: 5.7, icon: 'tabler-users', color: 'error' } ] const LogisticsDeliveryPerformance = () => { return ( } /> {deliveryData.map((data, index) => (
{data.title}
0 ? 'tabler-chevron-up text-success' : 'tabler-chevron-down text-error' )} /> 0 ? 'success.main' : 'error.main'}> {data.change}%
{data.value}
))}
) } export default LogisticsDeliveryPerformance