import PropTypes from 'prop-types';
// material-ui
import { useTheme } from '@mui/material/styles';
import Avatar from '@mui/material/Avatar';
import Button from '@mui/material/Button';
import Card from '@mui/material/Card';
import Chip from '@mui/material/Chip';
import List from '@mui/material/List';
import ListItem from '@mui/material/ListItem';
import ListItemAvatar from '@mui/material/ListItemAvatar';
import ListItemText from '@mui/material/ListItemText';
import Stack from '@mui/material/Stack';
import Typography from '@mui/material/Typography';
import Box from '@mui/material/Box';
// project imports
import { withAlpha } from 'utils/colorUtils';
// assets
import { IconBrandTelegram, IconBuildingStore, IconMailbox, IconPhoto } from '@tabler/icons-react';
import User1 from 'assets/images/users/user-round.svg';
function ListItemWrapper({ children }) {
const theme = useTheme();
return (
{children}
);
}
// ==============================|| NOTIFICATION LIST ITEM ||============================== //
export default function NotificationList() {
const containerSX = { gap: 2, pl: 7 };
return (
2 min ago
}
>
It is a long established fact that a reader will be distracted2 min ago
}
>
Store Verification Done} />
We have successfully received your request.2 min ago
}
>
Check Your Mail.} />
All done! Now check your inbox as you're in for a sweet treat!
} sx={{ width: 'min-content' }}>
Mail
2 min ago
}
>
John Doe} />
Uploaded two file on
21 Jan 2020
demo.jpg2 min ago
}
>
John Doe} />
It is a long established fact that a reader will be distracted
);
}
ListItemWrapper.propTypes = { children: PropTypes.node };