2016-07-11 11:45:42 +08:00
|
|
|
---
|
|
|
|
category: Components
|
2016-11-09 14:43:32 +08:00
|
|
|
type: Data Display
|
2016-09-21 11:28:38 +08:00
|
|
|
title: Badge
|
2020-05-31 11:48:34 +08:00
|
|
|
cover: https://gw.alipayobjects.com/zos/antfincdn/6%26GF9WHwvY/Badge.svg
|
2016-07-11 11:45:42 +08:00
|
|
|
---
|
|
|
|
|
2017-09-16 11:29:38 +08:00
|
|
|
Small numerical value or status descriptor for UI elements.
|
2016-07-11 11:45:42 +08:00
|
|
|
|
2016-09-10 13:43:30 +08:00
|
|
|
## When To Use
|
2016-07-11 11:45:42 +08:00
|
|
|
|
2017-09-16 11:29:38 +08:00
|
|
|
Badge normally appears in proximity to notifications or user avatars with eye-catching appeal, typically displaying unread messages count.
|
2016-07-11 11:45:42 +08:00
|
|
|
|
|
|
|
## API
|
|
|
|
|
2020-07-08 14:47:07 +08:00
|
|
|
### Badge
|
|
|
|
|
2019-03-31 20:21:20 +08:00
|
|
|
| Property | Description | Type | Default | Version |
|
2019-05-07 14:57:32 +08:00
|
|
|
| --- | --- | --- | --- | --- |
|
2019-11-20 20:31:43 +08:00
|
|
|
| color | Customize Badge dot color | string | - | |
|
2020-07-01 21:35:29 +08:00
|
|
|
| count | Number to show in badge | ReactNode | - | |
|
|
|
|
| dot | Whether to display a red dot instead of `count` | boolean | false | |
|
|
|
|
| offset | Set offset of the badge dot | \[number, number] | - | |
|
2019-05-07 14:57:32 +08:00
|
|
|
| overflowCount | Max count to show | number | 99 | |
|
2020-07-01 21:35:29 +08:00
|
|
|
| showZero | Whether to show badge when `count` is zero | boolean | false | |
|
2020-07-28 15:27:50 +08:00
|
|
|
| size | If `count` is set, `size` sets the size of badge | `default` \| `small` | - | 4.6.0 |
|
2020-10-21 10:33:43 +08:00
|
|
|
| status | Set Badge as a status dot | `success` \| `processing` \| `default` \| `error` \| `warning` | - | |
|
2020-07-08 14:47:07 +08:00
|
|
|
| text | If `status` is set, `text` sets the display text of the status `dot` | ReactNode | - | |
|
2020-07-01 21:35:29 +08:00
|
|
|
| title | Text to show when hovering over the badge | string | - | |
|
2020-07-08 14:47:07 +08:00
|
|
|
|
|
|
|
### Badge.Ribbon (4.5.0+)
|
|
|
|
|
|
|
|
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
|
|
|
| --- | --- | --- | --- | --- |
|
|
|
|
| color | Customize Ribbon color | string | - | |
|
|
|
|
| placement | The placement of the Ribbon, `start` and `end` follow text direction (RTL or LTR) | `start` \| `end` | `end` | |
|
|
|
|
| text | Content inside the Ribbon | ReactNode | - | |
|