mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
740 B
740 B
order | title | ||||
---|---|---|---|---|---|
3 |
|
zh-CN
对于使用 iconfont.cn 的用户,通过设置 create
方法参数对象中的 namespace
和 scriptUrl
字段, 即可轻松地使用已有项目中的图标。
en-US
Todo, please replace me!
import { Icon } from 'antd';
const IconFont = Icon.create({
namespace: 'iconfont-foo',
scriptUrl: 'https://at.alicdn.com/t/font_8d5l8fzk5b87iudi.js',
prefix: 'icon-',
});
ReactDOM.render(
<div className="icons-list">
<IconFont type="tuichu" />
<IconFont type="facebook" />
<IconFont type="twitter" />
</div>,
mountNode
);
.icons-list > .anticon {
margin-right: 6px;
}