mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
30 lines
377 B
Markdown
30 lines
377 B
Markdown
---
|
|
order: 0
|
|
title: 基本
|
|
---
|
|
|
|
简单的徽章展示。
|
|
|
|
````jsx
|
|
import { Badge } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<Badge count={5}>
|
|
<a href="#" className="head-example"></a>
|
|
</Badge>
|
|
, mountNode);
|
|
````
|
|
|
|
````css
|
|
.ant-badge {
|
|
margin-right: 16px;
|
|
}
|
|
.head-example {
|
|
width: 42px;
|
|
height: 42px;
|
|
border-radius: 6px;
|
|
background: #eee;
|
|
display: inline-block;
|
|
}
|
|
````
|