【发布时间】:2021-10-20 04:52:27
【问题描述】:
我已尝试寻找有关此问题的解决方案,但无法解决我的问题。这些是我查过的帖子:
- Why my label of Icon in antd is not displayed
- Why are the icons not showing up on my Ant Design sider?
我没有尝试过第二种解决方案,因为这是公司的一个项目,我不想在未经任何许可的情况下自行升级版本。
这是我的代码和导入:
import "antd/dist/antd.css";
import {Button} from 'antd';
import {TwitterOutlined} from '@ant-design/icons'; //import icons
//here is where i use the TwitterOutlined which is the icon
<Button type="link" href={links[3]} target="_blank" icon={<TwitterOutlined />}>Twitter</Button>
但是该图标没有显示在按钮内,所以如果有人知道我的导入或任何东西出了什么问题,我将不胜感激。
【问题讨论】:
标签: javascript reactjs icons antd