You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# 讨嫌的小红点
|
|
|
|
|
|
|
|
- order: 3
|
|
|
|
|
|
|
|
没有具体的数字。
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
var Badge = antd.Badge;
|
|
|
|
var Icon = antd.Icon;
|
|
|
|
|
|
|
|
React.render(<div>
|
|
|
|
<Badge dot={true}>
|
|
|
|
<Icon type="notification" />
|
|
|
|
</Badge>
|
|
|
|
<Badge dot={true}>
|
|
|
|
<a href="#">一个链接</a>
|
|
|
|
</Badge>
|
|
|
|
</div>, document.getElementById('components-badge-demo-dot'));
|
|
|
|
````
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.anticon-notification {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
line-height: 16px;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
</style>
|