mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
646 B
646 B
order | title | ||||
---|---|---|---|---|---|
3 |
|
zh-CN
没有具体的数字。
en-US
This will simply display a red badge, without a specific count. If count equals 0, it won't display the dot.
import { Badge, Icon } from 'antd';
ReactDOM.render(
<div>
<Badge dot>
<Icon type="notification" />
</Badge>
<Badge count={0} dot>
<Icon type="notification" />
</Badge>
<Badge dot>
<a href="#">Link something</a>
</Badge>
</div>,
mountNode);