mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
f7cfc19465
Co-authored-by: wynterding <dingwententao@youzan.com>
31 lines
660 B
Markdown
31 lines
660 B
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 按钮类型
|
|
en-US: Type
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
按钮有五种类型:主按钮、次按钮、虚线按钮、文本按钮和链接按钮。主按钮在同一个操作区域最多出现一次。
|
|
|
|
## en-US
|
|
|
|
There are `primary` button, `default` button, `dashed` button, `text` button and `link` button in antd.
|
|
|
|
```jsx
|
|
import { Button } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<>
|
|
<Button type="primary">Primary Button</Button>
|
|
<Button>Default Button</Button>
|
|
<Button type="dashed">Dashed Button</Button>
|
|
<br />
|
|
<Button type="text">Text Button</Button>
|
|
<Button type="link">Link Button</Button>
|
|
</>,
|
|
mountNode,
|
|
);
|
|
```
|