// ** MUI Imports import Box from '@mui/material/Box' import { styled } from '@mui/material/styles' import ListItem from '@mui/material/ListItem' import List, { ListProps } from '@mui/material/List' import ListItemText from '@mui/material/ListItemText' import ListItemAvatar from '@mui/material/ListItemAvatar' import LinearProgress from '@mui/material/LinearProgress' // ** Custom Components Imports import CustomAvatar from 'src/@core/components/mui/avatar' // ** Icon Imports import Icon from 'src/@core/components/icon' const StyledList = styled(List)(({ theme }) => ({ '& .MuiListItem-root': { border: `1px solid ${theme.palette.divider}`, '&:first-of-type': { borderTopLeftRadius: theme.shape.borderRadius, borderTopRightRadius: theme.shape.borderRadius }, '&:last-child': { borderBottomLeftRadius: theme.shape.borderRadius, borderBottomRightRadius: theme.shape.borderRadius }, '&:not(:last-child)': { borderBottom: 0 }, '& .MuiListItemText-root': { margin: theme.spacing(0, 0, 2), '& .MuiTypography-root': { fontWeight: 500 } } } })) const ListProgress = () => { return ( ) } export default ListProgress