2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 5
|
2016-07-21 10:10:04 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 大小
|
|
|
|
en-US: Size
|
2017-02-20 22:04:17 +08:00
|
|
|
---
|
2016-07-21 10:10:04 +08:00
|
|
|
|
|
|
|
## zh-CN
|
2016-01-21 22:45:21 +08:00
|
|
|
|
|
|
|
大中小三种组合,可以和表单输入框进行对应配合。
|
|
|
|
|
2016-07-21 10:10:04 +08:00
|
|
|
## en-US
|
|
|
|
|
2016-09-12 10:09:03 +08:00
|
|
|
There are three sizes available: large, medium, and small. It can coordinate with input box.
|
2016-07-21 10:10:04 +08:00
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
```jsx
|
2016-01-21 22:45:21 +08:00
|
|
|
import { Radio } from 'antd';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2017-10-09 13:23:20 +08:00
|
|
|
ReactDOM.render(
|
2020-03-30 22:14:13 +08:00
|
|
|
<>
|
|
|
|
<Radio.Group defaultValue="a" size="large">
|
|
|
|
<Radio.Button value="a">Hangzhou</Radio.Button>
|
|
|
|
<Radio.Button value="b">Shanghai</Radio.Button>
|
|
|
|
<Radio.Button value="c">Beijing</Radio.Button>
|
|
|
|
<Radio.Button value="d">Chengdu</Radio.Button>
|
|
|
|
</Radio.Group>
|
|
|
|
<Radio.Group defaultValue="a" style={{ marginTop: 16 }}>
|
|
|
|
<Radio.Button value="a">Hangzhou</Radio.Button>
|
|
|
|
<Radio.Button value="b">Shanghai</Radio.Button>
|
|
|
|
<Radio.Button value="c">Beijing</Radio.Button>
|
|
|
|
<Radio.Button value="d">Chengdu</Radio.Button>
|
|
|
|
</Radio.Group>
|
|
|
|
<Radio.Group defaultValue="a" size="small" style={{ marginTop: 16 }}>
|
|
|
|
<Radio.Button value="a">Hangzhou</Radio.Button>
|
|
|
|
<Radio.Button value="b">Shanghai</Radio.Button>
|
|
|
|
<Radio.Button value="c">Beijing</Radio.Button>
|
|
|
|
<Radio.Button value="d">Chengdu</Radio.Button>
|
|
|
|
</Radio.Group>
|
|
|
|
</>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2016-07-21 10:10:04 +08:00
|
|
|
```
|