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

28 lines
345 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.
2019-05-07 14:57:32 +08:00
```jsx
2015-12-06 16:39:01 +08:00
import { Switch } from 'antd';
ReactDOM.render(
<>
2017-12-06 20:20:32 +08:00
<Switch defaultChecked />
<br />
2017-12-06 20:20:32 +08:00
<Switch size="small" defaultChecked />
</>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```