ant-design/components/badge/demo/dot.md

37 lines
512 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
title:
zh-CN: 讨嫌的小红点
en-US: Red badge
2016-03-31 09:40:55 +08:00
---
2015-09-01 13:59:07 +08:00
## zh-CN
2015-09-01 13:59:07 +08:00
没有具体的数字。
## en-US
This will simply display a red badge, without a specific count.
2017-01-19 15:19:03 +08:00
````__react
import { Badge, Icon } from 'antd';
2015-09-01 13:59:07 +08:00
2015-10-20 16:47:55 +08:00
ReactDOM.render(<div>
2015-11-25 17:47:55 +08:00
<Badge dot>
2015-10-02 14:23:53 +08:00
<Icon type="notification" />
2015-09-01 13:59:07 +08:00
</Badge>
2015-11-25 17:47:55 +08:00
<Badge dot>
<a href="#">Link something</a>
2015-09-18 17:24:14 +08:00
</Badge>
</div>, mountNode);
2015-09-01 13:59:07 +08:00
````
<style>
.anticon-notification {
width: 16px;
height: 16px;
line-height: 16px;
font-size: 16px;
}
</style>