ant-design/components/switch/demo/size.md

28 lines
352 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
2016-07-26 09:17:46 +08:00
title:
zh-CN: 两种大小
en-US: Two sizes
2016-03-31 09:40:55 +08:00
---
2015-12-06 16:39:01 +08:00
2016-07-26 09:17:46 +08:00
## zh-CN
2015-12-06 16:39:01 +08:00
`size="small"` 表示小号开关。
2016-07-26 09:17:46 +08:00
## en-US
`size="small"` represents a small sized switch.
2017-02-13 10:55:53 +08:00
````jsx
2015-12-06 16:39:01 +08:00
import { Switch } from 'antd';
ReactDOM.render(
<div>
2017-12-06 20:20:32 +08:00
<Switch defaultChecked />
<br />
2017-12-06 20:20:32 +08:00
<Switch size="small" defaultChecked />
2018-06-27 15:55:04 +08:00
</div>,
2018-11-28 15:00:03 +08:00
mountNode
);
2015-12-06 16:39:01 +08:00
````