mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
80e7cc0afd
* fix: <Icon component={HomeOutlined} /> align issue close #33703 * update snapshot
33 lines
765 B
Markdown
33 lines
765 B
Markdown
---
|
|
order: 3
|
|
title:
|
|
zh-CN: 使用 iconfont.cn
|
|
en-US: Use iconfont.cn
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
对于使用 [iconfont.cn](http://iconfont.cn/) 的用户,通过设置 `createFromIconfontCN` 方法参数对象中的 `scriptUrl` 字段, 即可轻松地使用已有项目中的图标。
|
|
|
|
## en-US
|
|
|
|
If you are using [iconfont.cn](http://iconfont.cn/), you can use the icons in your project gracefully.
|
|
|
|
```jsx
|
|
import { Space } from 'antd';
|
|
import { createFromIconfontCN } from '@ant-design/icons';
|
|
|
|
const IconFont = createFromIconfontCN({
|
|
scriptUrl: '//at.alicdn.com/t/font_8d5l8fzk5b87iudi.js',
|
|
});
|
|
|
|
ReactDOM.render(
|
|
<Space>
|
|
<IconFont type="icon-tuichu" />
|
|
<IconFont type="icon-facebook" />
|
|
<IconFont type="icon-twitter" />
|
|
</Space>,
|
|
mountNode,
|
|
);
|
|
```
|