mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-22 17:13:27 +08:00
c93bd326f4
* docs(update): removed 3.x version description in 4.0-prepare ref #19815 * docs(update): update docs remove carousel/index.zh-CN.md empty version column * docs(update): update docs remove carousel/index.en-US.md empty version column
36 lines
1.2 KiB
Markdown
36 lines
1.2 KiB
Markdown
---
|
|
category: Components
|
|
type: Data Display
|
|
title: Badge
|
|
---
|
|
|
|
Small numerical value or status descriptor for UI elements.
|
|
|
|
## When To Use
|
|
|
|
Badge normally appears in proximity to notifications or user avatars with eye-catching appeal, typically displaying unread messages count.
|
|
|
|
## API
|
|
|
|
```jsx
|
|
<Badge count={5}>
|
|
<a href="#" className="head-example" />
|
|
</Badge>
|
|
```
|
|
|
|
```jsx
|
|
<Badge count={5} />
|
|
```
|
|
|
|
| Property | Description | Type | Default | Version |
|
|
| --- | --- | --- | --- | --- |
|
|
| color | Customize Badge dot color | string | - | |
|
|
| 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, like`[x, y]` | `[number, number]` | - | |
|
|
| overflowCount | Max count to show | number | 99 | |
|
|
| showZero | Whether to show badge when `count` is zero | boolean | `false` | |
|
|
| status | Set Badge as a status dot | `success` \| `processing` \| `default` \| `error` \| `warning` | `''` | |
|
|
| text | If `status` is set, `text` sets the display text of the status `dot` | string | `''` | |
|
|
| title | Text to show when hovering over the badge | string | `count` | |
|