Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
37 lines
881 B
JavaScript
37 lines
881 B
JavaScript
import List from '@mui/material/List';
|
|
import ListItem from '@mui/material/ListItem';
|
|
import ListItemText from '@mui/material/ListItemText';
|
|
import Divider from '@mui/material/Divider';
|
|
|
|
const style = {
|
|
p: 0,
|
|
width: '100%',
|
|
maxWidth: 360,
|
|
borderRadius: 2,
|
|
border: '1px solid',
|
|
borderColor: 'divider',
|
|
backgroundColor: 'background.paper',
|
|
};
|
|
|
|
export default function ListDividers() {
|
|
return (
|
|
<List sx={style} aria-label="mailbox folders">
|
|
<ListItem>
|
|
<ListItemText primary="Inbox" />
|
|
</ListItem>
|
|
<Divider component="li" />
|
|
<ListItem>
|
|
<ListItemText primary="Drafts" />
|
|
</ListItem>
|
|
<Divider component="li" />
|
|
<ListItem>
|
|
<ListItemText primary="Trash" />
|
|
</ListItem>
|
|
<Divider component="li" />
|
|
<ListItem>
|
|
<ListItemText primary="Spam" />
|
|
</ListItem>
|
|
</List>
|
|
);
|
|
}
|