// @mui import { styled } from '@mui/material/styles'; import { Button, Card, Divider, Link, Typography, Stack } from '@mui/material'; import { ChevronRight } from '@mui/icons-material'; // components import Iconify from '@/components/Iconify'; // ---------------------------------------------------------------------- const RootStyle = styled(Card)(({ theme }) => ({ boxShadow: 'none', padding: '1rem 0.5rem', color: 'black', backgroundColor: theme.palette.grey[200], maxHeight: '250px', })); const ItemStyle = styled(Card)(({ theme }) => ({ boxShadow: 'none', padding: theme.spacing(1), borderRadius: 0.5, color: 'black', height: '180px', })); const itemList = [ { info: 'Mohon lengkapi dokumen Mahen sadarsa', date: 'Selasa, 20 April 22', time: '08:00 WIB' }, { info: 'Mohon lengkapi dokumen Mahen sadarsa', date: 'Selasa, 20 April 22', time: '09:00 WIB' }, { info: 'Mohon lengkapi dokumen Mahen sadarsa', date: 'Selasa, 20 April 22', time: '10:00 WIB' }, { info: 'Mohon lengkapi dokumen Mahen sadarsa', date: 'Selasa, 20 April 22', time: '11:00 WIB' }, ]; // ---------------------------------------------------------------------- export default function NotificationCard() { return ( Notification
{itemList.map(({ info, date, time }, key) => (
{key >= 1 ? : ''} {info} { alert('Info Detail'); }} > Info Detail {date} {time}
))}
{/* Lock Fund ( 25% ) 125.000.000 / 125.000.000 */} ); }