mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 13:08:41 +08:00
582 B
582 B
order | title | ||||
---|---|---|---|---|---|
0 |
|
zh-CN
使用 <Icon />
标签声明组件,指定图标对应的 type
属性。可以通过设置 spin
属性来实现动画旋转效果。
en-US
Use tag <Icon />
to create an icon and set its type in the type
prop.
import { Icon } from 'antd';
ReactDOM.render(
<div>
<Icon type="home" />
<Icon type="setting" />
<Icon type="smile" />
<Icon type="smile" rotate={45} />
<Icon type="smile" flip="vertical" />
<Icon type="reload" spin />
</div>,
mountNode
);