mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 09:49:57 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
42 lines
1.2 KiB
Markdown
42 lines
1.2 KiB
Markdown
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 大小
|
|
en-US: Size
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
大中小三种组合,可以和表单输入框进行对应配合。
|
|
|
|
## en-US
|
|
|
|
There are three sizes available: large, medium, and small. It can coordinate with input box.
|
|
|
|
```jsx
|
|
import { Radio } from 'antd';
|
|
|
|
export default () => (
|
|
<>
|
|
<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>
|
|
</>
|
|
);
|
|
```
|