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
16 lines
464 B
JavaScript
16 lines
464 B
JavaScript
import Stack from '@mui/material/Stack';
|
|
import { green } from '@mui/material/colors';
|
|
import Icon from '@mui/material/Icon';
|
|
|
|
export default function Icons() {
|
|
return (
|
|
<Stack direction="row" spacing={3}>
|
|
<Icon>add_circle</Icon>
|
|
<Icon color="primary">add_circle</Icon>
|
|
<Icon sx={{ color: green[500] }}>add_circle</Icon>
|
|
<Icon fontSize="small">add_circle</Icon>
|
|
<Icon sx={{ fontSize: 30 }}>add_circle</Icon>
|
|
</Stack>
|
|
);
|
|
}
|