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
38 lines
1.2 KiB
JavaScript
38 lines
1.2 KiB
JavaScript
import MenuList from '@mui/material/MenuList';
|
|
import MenuItem from '@mui/material/MenuItem';
|
|
import Paper from '@mui/material/Paper';
|
|
import ListItemIcon from '@mui/material/ListItemIcon';
|
|
import Typography from '@mui/material/Typography';
|
|
import DraftsIcon from '@mui/icons-material/Drafts';
|
|
import SendIcon from '@mui/icons-material/Send';
|
|
import PriorityHighIcon from '@mui/icons-material/PriorityHigh';
|
|
|
|
export default function TypographyMenu() {
|
|
return (
|
|
<Paper sx={{ width: 230 }}>
|
|
<MenuList>
|
|
<MenuItem>
|
|
<ListItemIcon>
|
|
<SendIcon fontSize="small" />
|
|
</ListItemIcon>
|
|
<Typography variant="inherit">A short message</Typography>
|
|
</MenuItem>
|
|
<MenuItem>
|
|
<ListItemIcon>
|
|
<PriorityHighIcon fontSize="small" />
|
|
</ListItemIcon>
|
|
<Typography variant="inherit">A very long text that overflows</Typography>
|
|
</MenuItem>
|
|
<MenuItem>
|
|
<ListItemIcon>
|
|
<DraftsIcon fontSize="small" />
|
|
</ListItemIcon>
|
|
<Typography variant="inherit" noWrap>
|
|
A very long text that overflows
|
|
</Typography>
|
|
</MenuItem>
|
|
</MenuList>
|
|
</Paper>
|
|
);
|
|
}
|