ant-design/components/badge/demo/dot.md
afc163 753c01ae18 ES6 syntax for demo code
fix antd.notification
2015-10-28 20:55:49 +08:00

30 lines
445 B
Markdown

# 讨嫌的小红点
- order: 3
没有具体的数字。
---
````jsx
import { Badge, Icon } from 'antd';
ReactDOM.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>