mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +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
38 lines
875 B
Markdown
38 lines
875 B
Markdown
---
|
|
order: 6
|
|
title:
|
|
zh-CN: 填底的按钮样式
|
|
en-US: Solid radio button
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
实色填底的单选按钮样式。
|
|
|
|
## en-US
|
|
|
|
Solid radio button style.
|
|
|
|
```jsx
|
|
import { Radio } from 'antd';
|
|
|
|
export default () => (
|
|
<>
|
|
<Radio.Group defaultValue="a" buttonStyle="solid">
|
|
<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="c" buttonStyle="solid" style={{ marginTop: 16 }}>
|
|
<Radio.Button value="a">Hangzhou</Radio.Button>
|
|
<Radio.Button value="b" disabled>
|
|
Shanghai
|
|
</Radio.Button>
|
|
<Radio.Button value="c">Beijing</Radio.Button>
|
|
<Radio.Button value="d">Chengdu</Radio.Button>
|
|
</Radio.Group>
|
|
</>
|
|
);
|
|
```
|