// material-ui import { useTheme, styled } from '@mui/material/styles'; import { Avatar, Button, Card, CardContent, Chip, Divider, Grid, List, ListItem, ListItemAvatar, ListItemSecondaryAction, ListItemText, Stack, Typography } from '@mui/material'; // assets import { IconBrandTelegram, IconBuildingStore, IconMailbox, IconPhoto } from '@tabler/icons'; import User1 from 'assets/images/users/user-round.svg'; // styles const ListItemWrapper = styled('div')(({ theme }) => ({ cursor: 'pointer', padding: 16, '&:hover': { background: theme.palette.mode === 'dark' ? theme.palette.dark.main : theme.palette.primary.light }, '& .MuiListItem-root': { padding: 0 } })); // ==============================|| NOTIFICATION LIST ITEM ||============================== // const NotificationList = () => { const theme = useTheme(); const chipSX = { height: 24, padding: '0 6px' }; const chipErrorSX = { ...chipSX, color: theme.palette.orange.dark, backgroundColor: theme.palette.mode === 'dark' ? theme.palette.dark.main : theme.palette.orange.light, marginRight: '5px' }; const chipWarningSX = { ...chipSX, color: theme.palette.warning.dark, backgroundColor: theme.palette.mode === 'dark' ? theme.palette.dark.main : theme.palette.warning.light }; const chipSuccessSX = { ...chipSX, color: theme.palette.success.dark, backgroundColor: theme.palette.mode === 'dark' ? theme.palette.dark.main : theme.palette.success.light, height: 28 }; return ( 2 min ago It is a long established fact that a reader will be distracted Store Verification Done} /> 2 min ago We have successfully received your request. Check Your Mail.} /> 2 min ago All done! Now check your inbox as you're in for a sweet treat! John Doe} /> 2 min ago Uploaded two file on   21 Jan 2020 demo.jpg John Doe} /> 2 min ago It is a long established fact that a reader will be distracted ); }; export default NotificationList;