ant-design/components/switch/demo/size.md
2016-04-01 10:08:19 +08:00

19 lines
223 B
Markdown

---
order: 3
title: 两种大小
---
`size="small"` 表示小号开关。
````jsx
import { Switch } from 'antd';
ReactDOM.render(
<div>
<Switch />
&nbsp;
<Switch size="small" />
</div>
, mountNode);
````