26 lines
738 B
JavaScript
26 lines
738 B
JavaScript
|
|
import List from '@mui/material/List';
|
||
|
|
import ListItem from '@mui/material/ListItem';
|
||
|
|
import ListItemText from '@mui/material/ListItemText';
|
||
|
|
import CommentIcon from '@mui/icons-material/Comment';
|
||
|
|
import IconButton from '@mui/material/IconButton';
|
||
|
|
|
||
|
|
export default function GutterlessList() {
|
||
|
|
return (
|
||
|
|
<List sx={{ width: '100%', maxWidth: 360, bgcolor: 'background.paper' }}>
|
||
|
|
{[1, 2, 3].map((value) => (
|
||
|
|
<ListItem
|
||
|
|
key={value}
|
||
|
|
disableGutters
|
||
|
|
secondaryAction={
|
||
|
|
<IconButton aria-label="comment">
|
||
|
|
<CommentIcon />
|
||
|
|
</IconButton>
|
||
|
|
}
|
||
|
|
>
|
||
|
|
<ListItemText primary={`Line item ${value}`} />
|
||
|
|
</ListItem>
|
||
|
|
))}
|
||
|
|
</List>
|
||
|
|
);
|
||
|
|
}
|