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
25 lines
794 B
TypeScript
25 lines
794 B
TypeScript
import IconButton from '@mui/material/IconButton';
|
|
import Stack from '@mui/material/Stack';
|
|
import DeleteIcon from '@mui/icons-material/Delete';
|
|
import AlarmIcon from '@mui/icons-material/Alarm';
|
|
import AddShoppingCartIcon from '@mui/icons-material/AddShoppingCart';
|
|
|
|
export default function IconButtons() {
|
|
return (
|
|
<Stack direction="row" spacing={1}>
|
|
<IconButton aria-label="delete">
|
|
<DeleteIcon />
|
|
</IconButton>
|
|
<IconButton aria-label="delete" disabled color="primary">
|
|
<DeleteIcon />
|
|
</IconButton>
|
|
<IconButton color="secondary" aria-label="add an alarm">
|
|
<AlarmIcon />
|
|
</IconButton>
|
|
<IconButton color="primary" aria-label="add to shopping cart">
|
|
<AddShoppingCartIcon />
|
|
</IconButton>
|
|
</Stack>
|
|
);
|
|
}
|