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

36 lines
670 B
Markdown
Raw Normal View History

2018-07-19 19:24:19 +08:00
---
order: 0
title:
zh-CN: 基本用法
en-US: Basic
---
## zh-CN
2018-07-20 16:55:45 +08:00
使用 `<Icon />` 标签声明组件,指定图标对应的 `type` 属性。可以通过设置 `spin` 属性来实现动画旋转效果。
2018-07-19 19:24:19 +08:00
## en-US
2018-08-20 17:23:28 +08:00
Use tag `<Icon />` to create an icon and set its type in the `type` prop. Specific the `spin` property to show spinning animation.
2018-07-19 19:24:19 +08:00
````jsx
import { Icon } from 'antd';
ReactDOM.render(
2018-08-14 17:17:51 +08:00
<div className="icons-list">
<Icon type="home" />
2018-07-19 21:07:33 +08:00
<Icon type="setting" />
2018-08-24 17:36:22 +08:00
<Icon type="smile-o" />
<Icon type="sync" spin />
<Icon type="loading" />
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;
}
```