You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
5 years ago
|
---
|
||
|
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 { 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(
|
||
|
<div className="icons-list">
|
||
|
<IconFont type="icon-javascript" />
|
||
|
<IconFont type="icon-java" />
|
||
|
<IconFont type="icon-shoppingcart" />
|
||
|
<IconFont type="icon-python" />
|
||
|
</div>,
|
||
|
mountNode,
|
||
|
);
|
||
|
```
|