You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
517 B

---
order: 9
title:
zh-CN: 危险按钮
en-US: Danger Buttons
---
## zh-CN
在 4.0 之后,危险成为一种按钮属性而不是按钮类型。
## en-US
`danger` is a property of button after antd 4.0.
```jsx
import { Button } from 'antd';
ReactDOM.render(
<>
<Button type="primary" danger>
Primary
</Button>
<Button danger>Default</Button>
<Button type="dashed" danger>
link
</Button>
<Button type="link" danger>
link
</Button>
</>,
mountNode,
);
```