mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 16:19:15 +08:00
80e7cc0afd
* fix: <Icon component={HomeOutlined} /> align issue close #33703 * update snapshot
37 lines
1.1 KiB
Markdown
37 lines
1.1 KiB
Markdown
---
|
|
order: 4
|
|
title:
|
|
zh-CN: 使用 iconfont.cn 的多个资源
|
|
en-US: Multiple resources from iconfont.cn
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
`@ant-design/icons@4.1.0` 以后,`scriptUrl` 可引用多个资源,用户可灵活的管理 [iconfont.cn](http://iconfont.cn/) 图标。如果资源的图标出现重名,会按照数组顺序进行覆盖。
|
|
|
|
## en-US
|
|
|
|
You can use `scriptUrl` as an array after `@ant-design/icons@4.1.0`, manage icons in one `<Icon />` from multiple [iconfont.cn](http://iconfont.cn/) resources. If icon with a duplicate name in resources, it will overrided in array order.
|
|
|
|
```jsx
|
|
import { Space } from 'antd';
|
|
import { createFromIconfontCN } from '@ant-design/icons';
|
|
|
|
const IconFont = createFromIconfontCN({
|
|
scriptUrl: [
|
|
'//at.alicdn.com/t/font_1788044_0dwu4guekcwr.js', // icon-javascript, icon-java, icon-shoppingcart (overrided)
|
|
'//at.alicdn.com/t/font_1788592_a5xf2bdic3u.js', // icon-shoppingcart, icon-python
|
|
],
|
|
});
|
|
|
|
ReactDOM.render(
|
|
<Space>
|
|
<IconFont type="icon-javascript" />
|
|
<IconFont type="icon-java" />
|
|
<IconFont type="icon-shoppingcart" />
|
|
<IconFont type="icon-python" />
|
|
</Space>,
|
|
mountNode,
|
|
);
|
|
```
|