reactjs 在'@mui/icons-material/Send.js'中找不到材料UI图标

hgqdbh6s  于 2022-11-22  发布在  React
关注(0)|答案(1)|浏览(112)

我正在使用Material UI库,并尝试使用import语句导入SendIcon

import { SendIcon } from "@mui/icons-material/Send.js";

我必须包含.js扩展名,因为我在package.json文件中包含了"type" : "module"
然而,我得到的错误:

export 'SendIcon' (imported as 'SendIcon') was not found in '@mui/icons-material/Send.js' (possible exports: __esModule, default)

我已经安装了材料UI的所有必要模块,但我不确定为什么会出现此错误?
提前感谢!

5n0oy7gb

5n0oy7gb1#

而不是:

import { SendIcon } from "@mui/icons-material/Send.js";

请尝试:

import SendIcon from '@mui/icons-material/Send';

您还可以搜索Material Icon Page Search for 'Send'以验证如何正确导入组件。

相关问题