cannot import @mui/icons-material/XXX with ESM
See original GitHub issueDuplicates
- I have searched the existing issues
Latest version
- I have tested the latest version
Steps to reproduce 🕹
I try to convert a NPM module to pure ESM (with typescript).
It occasionally uses icons from @mui/icons-material
We usually had imports like this:
import DeleteIcon from '@mui/icons-material/Delete'
this no longer works, DeleteIcon is not an Component, but an object with the default
property.
this however works:
import {default as DeleteIcon} from '@mui/icons-material/Delete'
and this as well (probably the recommended way anyway)
import {Delete as DeleteIcon} from '@mui/icons-material'
Current behavior 😯
import DeleteIcon from '@mui/icons-material/Delete'
DeleteIcon is not an Component, but an object with the default
property.
Expected behavior 🤔
import DeleteIcon from '@mui/icons-material/Delete'
DeleteIcon is a Component and works out of the box
Context 🔦
I maintain https://github.com/react-page/react-page and have a problem there currently with latest nextjs in combination with some libraries and therefore try to move everything to pure ESM.
the ESM transition is pretty rough and combined with typescript its surprisingly complicated. Its unclear whether the above problem is related to the config or to @mui/icons-material, or both.
I see that not all npm packages have this problem though.
Your environment 🌎
npx @mui/envinfo
System:
OS: macOS 13.0
Binaries:
Node: 14.21.1 - ~/.nvm/versions/node/v14.21.1/bin/node
Yarn: 1.22.19 - /usr/local/bin/yarn
npm: 6.14.17 - ~/.nvm/versions/node/v14.21.1/bin/npm
Browsers:
Chrome: 107.0.5304.110
Edge: Not Found
Firefox: 99.0.1
Safari: 16.1
Issue Analytics
- State:
- Created 10 months ago
- Reactions:2
- Comments:8 (5 by maintainers)
🤷 I copied that straight from your README
edit:
Ok, looking over the docs again
It seems I was conflating not having
"exports"
with not having a subpath defined in"exports"
. Personally, it’s still a change I’d make over a major, but it could be ok.We plan to properly support ES modules (file extensions in imports, package.json
exports
, etc.) in the upcoming version (v6) of Material UI. Changing anything in this area before then is likely a no-go, as the changes could break existing applications.