mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
956 B
956 B
category | type | title |
---|---|---|
Components | Views | Badge |
Small numerical value or status descriptors for UI elements.
When To Use
Badge normally appears in proximity to notification or head picture with eye-catching appeal, typically displaying unread messages count.
API
<Badge count={5}>
<a href="#" className="head-example" />
</Badge>
<Badge count={5} />
Property | Description | Type | Default |
---|---|---|---|
count | Number to show in badge | Number | |
overflowCount | Max count to show | Number | 99 |
dot | whether to show red dot without number | Boolean | false |
status | Set Badge as a status dot | Enum{ 'success', 'processing, 'default', 'error', 'warning' } | '' |
text | If status is set, text is to set the text of status dot |
String | '' |