2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 5
|
2016-07-21 10:10:04 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 大小
|
|
|
|
en-US: Size
|
|
|
|
-----------
|
|
|
|
|
|
|
|
## zh-CN
|
2016-01-21 22:45:21 +08:00
|
|
|
|
|
|
|
大中小三种组合,可以和表单输入框进行对应配合。
|
|
|
|
|
2016-07-21 10:10:04 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
There are three kinds of combination, large medium and small. It can coordinate with input box.
|
|
|
|
|
|
|
|
```jsx
|
2016-01-21 22:45:21 +08:00
|
|
|
import { Radio } from 'antd';
|
|
|
|
const RadioButton = Radio.Button;
|
|
|
|
const RadioGroup = Radio.Group;
|
|
|
|
|
|
|
|
ReactDOM.render(<div>
|
|
|
|
<div>
|
|
|
|
<RadioGroup defaultValue="a" size="large">
|
|
|
|
<RadioButton value="a">杭州</RadioButton>
|
|
|
|
<RadioButton value="b">上海</RadioButton>
|
|
|
|
<RadioButton value="c">北京</RadioButton>
|
|
|
|
<RadioButton value="d">成都</RadioButton>
|
|
|
|
</RadioGroup>
|
|
|
|
</div>
|
|
|
|
<div style={{ marginTop: 16 }}>
|
|
|
|
<RadioGroup defaultValue="a">
|
|
|
|
<RadioButton value="a">杭州</RadioButton>
|
|
|
|
<RadioButton value="b">上海</RadioButton>
|
|
|
|
<RadioButton value="c">北京</RadioButton>
|
|
|
|
<RadioButton value="d">成都</RadioButton>
|
|
|
|
</RadioGroup>
|
|
|
|
</div>
|
|
|
|
<div style={{ marginTop: 16 }}>
|
|
|
|
<RadioGroup defaultValue="a" size="small">
|
|
|
|
<RadioButton value="a">杭州</RadioButton>
|
|
|
|
<RadioButton value="b">上海</RadioButton>
|
|
|
|
<RadioButton value="c">北京</RadioButton>
|
|
|
|
<RadioButton value="d">成都</RadioButton>
|
|
|
|
</RadioGroup>
|
|
|
|
</div>
|
|
|
|
</div>, mountNode);
|
2016-07-21 10:10:04 +08:00
|
|
|
```
|