the @material-ui/core has a UMD support which I could use it like this:
<script src="https://unpkg.zhimg.com/@material-ui/[email protected]/umd/material-ui.development.js" crossorigin="anonymous"></script>
const {
makeStyles,
AppBar,
Toolbar,
Typography,
Button,
IconButton,
} = MaterialUI
but @material-ui/icons doesn't, so how can we use it like this way?(Without using NodeJS)
@sky5454 The UMD export is only meant for quick and dirty tests. You can already use Font icons for this case. Implementing such a feature would mean significantly increase the size of the package, https://packagephobia.now.sh/result?p=@material-ui/icons, which is already large and can sometimes create yarn/npm timeouts.

Most helpful comment
@sky5454 The UMD export is only meant for quick and dirty tests. You can already use Font icons for this case. Implementing such a feature would mean significantly increase the size of the package, https://packagephobia.now.sh/result?p=@material-ui/icons, which is already large and can sometimes create yarn/npm timeouts.