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

40 lines
727 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
对于使用 [iconfont.cn](http://iconfont.cn/) 的用户,通过设置 `create` 方法参数对象中的 `namespace``scriptUrl` 字段, 即可轻松地使用已有项目中的图标。
2018-07-19 19:24:19 +08:00
## en-US
Todo, please replace me!
````jsx
import { Icon } from 'antd';
const FooIcon = Icon.create({
namespace: 'foo',
scriptUrl: 'https://at.alicdn.com/t/font_8d5l8fzk5b87iudi.js',
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-07-19 19:24:19 +08:00
<FooIcon type="tuichu" />
<FooIcon type="facebook" />
<FooIcon type="twitter" />
</div>,
mountNode
);
````
2018-08-14 17:17:51 +08:00
```css
.icons-list > .anticon {
margin-right: 6px;
}
```