ant-design/components/spin/demo/size.md
2016-06-18 15:43:42 +08:00

25 lines
347 B
Markdown

---
order: 1
title: 各种大小
---
小的用于文本加载,默认用于卡片容器级加载,大的用于**页面级**加载。
````jsx
import { Spin } from 'antd';
ReactDOM.render(
<div>
<Spin size="small" />
<Spin />
<Spin size="large" />
</div>
, mountNode);
````
<style>
.ant-spin {
margin-right: 16px;
}
</style>