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
18 lines
482 B
TypeScript
18 lines
482 B
TypeScript
import Button from '@mui/material/Button';
|
|
import DeleteIcon from '@mui/icons-material/Delete';
|
|
import SendIcon from '@mui/icons-material/Send';
|
|
import Stack from '@mui/material/Stack';
|
|
|
|
export default function IconLabelButtons() {
|
|
return (
|
|
<Stack direction="row" spacing={2}>
|
|
<Button variant="outlined" startIcon={<DeleteIcon />}>
|
|
Delete
|
|
</Button>
|
|
<Button variant="contained" endIcon={<SendIcon />}>
|
|
Send
|
|
</Button>
|
|
</Stack>
|
|
);
|
|
}
|