2016-08-20 17:43:46 +08:00
|
|
|
---
|
2021-08-02 12:22:30 +08:00
|
|
|
order: 8
|
2016-08-20 17:43:46 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 状态点
|
|
|
|
en-US: Status
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
用于表示状态的小圆点。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Standalone badge with status.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2016-08-20 17:43:46 +08:00
|
|
|
import { Badge } from 'antd';
|
|
|
|
|
2022-04-03 23:27:45 +08:00
|
|
|
export default () => (
|
2021-08-02 12:22:30 +08:00
|
|
|
<>
|
2016-08-20 17:43:46 +08:00
|
|
|
<Badge status="success" />
|
|
|
|
<Badge status="error" />
|
|
|
|
<Badge status="default" />
|
|
|
|
<Badge status="processing" />
|
|
|
|
<Badge status="warning" />
|
|
|
|
<br />
|
2016-10-12 19:42:10 +08:00
|
|
|
<Badge status="success" text="Success" />
|
|
|
|
<br />
|
|
|
|
<Badge status="error" text="Error" />
|
|
|
|
<br />
|
|
|
|
<Badge status="default" text="Default" />
|
|
|
|
<br />
|
|
|
|
<Badge status="processing" text="Processing" />
|
|
|
|
<br />
|
2016-08-20 17:43:46 +08:00
|
|
|
<Badge status="warning" text="Warning" />
|
2022-04-03 23:27:45 +08:00
|
|
|
</>
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|