ant-design/components/icon/demo/iconfont.md

40 lines
745 B
Markdown
Raw Normal View History

2018-07-19 19:24:19 +08:00
---
2018-08-14 17:17:51 +08:00
order: 3
2018-07-19 19:24:19 +08:00
title:
zh-CN: 使用 iconfont.cn
en-US: Use iconfont.cn
---
## zh-CN
2018-08-16 18:44:43 +08:00
对于使用 [iconfont.cn](http://iconfont.cn/) 的用户,通过设置 `createFromIconfontCN` 方法参数对象中的 `namespace``url` 字段, 即可轻松地使用已有项目中的图标。
2018-07-19 19:24:19 +08:00
## en-US
Todo, please replace me!
````jsx
import { Icon } from 'antd';
2018-08-16 16:13:18 +08:00
const IconFont = Icon.createFromIconfontCN({
2018-08-15 17:21:02 +08:00
namespace: 'iconfont-foo',
2018-08-16 18:44:43 +08:00
url: 'at.alicdn.com/t/font_8d5l8fzk5b87iudi',
2018-07-19 21:07:33 +08:00
prefix: 'icon-',
2018-07-19 19:24:19 +08:00
});
ReactDOM.render(
2018-08-14 17:17:51 +08:00
<div className="icons-list">
2018-08-15 17:21:02 +08:00
<IconFont type="tuichu" />
<IconFont type="facebook" />
<IconFont type="twitter" />
2018-07-19 19:24:19 +08:00
</div>,
mountNode
);
````
2018-08-14 17:17:51 +08:00
```css
.icons-list > .anticon {
margin-right: 6px;
}
```