// ** MUI Imports import Box from '@mui/material/Box' import Avatar from '@mui/material/Avatar' import Button from '@mui/material/Button' import ListItem from '@mui/material/ListItem' import { styled } from '@mui/material/styles' import Typography from '@mui/material/Typography' import List, { ListProps } from '@mui/material/List' import ListItemText from '@mui/material/ListItemText' import ListItemAvatar from '@mui/material/ListItemAvatar' import ListItemSecondaryAction from '@mui/material/ListItemSecondaryAction' // ** Icon Imports import Icon from 'src/@core/components/icon' const StyledList = styled(List)(({ theme }) => ({ '& .MuiListItem-container': { 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 }, '& .MuiListItem-root': { paddingRight: theme.spacing(24) }, '& .MuiListItemText-root': { marginTop: 0, '& .MuiTypography-root': { fontWeight: 500 } } } })) const ListUsers = () => { return (
Online 13 minutes ago
Away 11 minutes ago
Offline 9 minutes ago
In Meeting 28 minutes ago
) } export default ListUsers