83 lines
2.3 KiB
JavaScript
83 lines
2.3 KiB
JavaScript
import React from "react";
|
|
import Card from "@mui/material/Card";
|
|
import { Typography } from "@mui/material";
|
|
import Box from '@mui/material/Box';
|
|
import List from '@mui/material/List';
|
|
import ListItem from '@mui/material/ListItem';
|
|
import ListItemButton from '@mui/material/ListItemButton';
|
|
import ListItemIcon from '@mui/material/ListItemIcon';
|
|
import ListItemText from '@mui/material/ListItemText';
|
|
import Divider from '@mui/material/Divider';
|
|
import InboxIcon from '@mui/icons-material/Inbox';
|
|
import DraftsIcon from '@mui/icons-material/Drafts';
|
|
|
|
export default function BasicList() {
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
mb: '10px'
|
|
}}
|
|
>
|
|
Basic List
|
|
</Typography>
|
|
|
|
<Box
|
|
sx={{ width: '100%', maxWidth: 360, bgcolor: 'background.paper' }}
|
|
className="bg-black"
|
|
>
|
|
<nav aria-label="main mailbox folders">
|
|
<List>
|
|
<ListItem disablePadding>
|
|
<ListItemButton>
|
|
<ListItemIcon>
|
|
<InboxIcon />
|
|
</ListItemIcon>
|
|
<ListItemText primary="Inbox" />
|
|
</ListItemButton>
|
|
</ListItem>
|
|
|
|
<ListItem disablePadding>
|
|
<ListItemButton>
|
|
<ListItemIcon>
|
|
<DraftsIcon />
|
|
</ListItemIcon>
|
|
<ListItemText primary="Drafts" />
|
|
</ListItemButton>
|
|
</ListItem>
|
|
</List>
|
|
</nav>
|
|
|
|
<Divider />
|
|
|
|
<nav aria-label="secondary mailbox folders">
|
|
<List>
|
|
<ListItem disablePadding>
|
|
<ListItemButton>
|
|
<ListItemText primary="Trash" />
|
|
</ListItemButton>
|
|
</ListItem>
|
|
<ListItem disablePadding>
|
|
<ListItemButton component="a" href="#simple-list">
|
|
<ListItemText primary="Spam" />
|
|
</ListItemButton>
|
|
</ListItem>
|
|
</List>
|
|
</nav>
|
|
</Box>
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|