mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
411 B
411 B
基本
- order: 0
简单的徽章展示。
var Badge = antd.Badge;
ReactDOM.render(
<Badge count="5">
<a href="#" className="head-example"></a>
</Badge>
, document.getElementById('components-badge-demo-basic'));
.ant-badge {
margin-right: 16px;
}
.head-example {
width: 42px;
height: 42px;
border-radius: 6px;
background: #eee;
display: inline-block;
}