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
22 lines
504 B
JavaScript
22 lines
504 B
JavaScript
import Stack from '@mui/material/Stack';
|
|
import SvgIcon from '@mui/material/SvgIcon';
|
|
|
|
function HomeIcon(props) {
|
|
return (
|
|
<SvgIcon {...props}>
|
|
<path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z" />
|
|
</SvgIcon>
|
|
);
|
|
}
|
|
|
|
export default function SvgIconsSize() {
|
|
return (
|
|
<Stack direction="row" spacing={3} sx={{ alignItems: 'flex-end' }}>
|
|
<HomeIcon fontSize="small" />
|
|
<HomeIcon />
|
|
<HomeIcon fontSize="large" />
|
|
<HomeIcon sx={{ fontSize: 40 }} />
|
|
</Stack>
|
|
);
|
|
}
|