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
27 lines
767 B
JavaScript
27 lines
767 B
JavaScript
import * as React from 'react';
|
|
import Button from '@mui/material/Button';
|
|
import Icon from '@mui/material/Icon';
|
|
import SendIcon from '@mui/icons-material/Send';
|
|
|
|
export default function IconLabelButtons() {
|
|
return (
|
|
<div>
|
|
<Button variant="contained" color="secondary" startIcon={<SendIcon />}>
|
|
Send
|
|
</Button>
|
|
<Button variant="contained" endIcon={<Icon>send</Icon>}>
|
|
Send
|
|
</Button>
|
|
<Button variant="contained" disabled color="secondary" startIcon={<SendIcon />}>
|
|
Send
|
|
</Button>
|
|
<Button variant="contained" size="small" startIcon={<SendIcon />}>
|
|
Send
|
|
</Button>
|
|
<Button variant="contained" size="large" startIcon={<SendIcon />}>
|
|
Send
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|