mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 07:39:36 +08:00
41 lines
930 B
Markdown
41 lines
930 B
Markdown
---
|
|
order: 6
|
|
title:
|
|
zh-CN: 填底的按钮样式
|
|
en-US: Solid radio button
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
实色填底的单选按钮样式。
|
|
|
|
## en-US
|
|
|
|
Solid radio button style.
|
|
|
|
```tsx
|
|
import { Radio } from 'antd';
|
|
import React from 'react';
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<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>
|
|
</>
|
|
);
|
|
|
|
export default App;
|
|
```
|