mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 11:39:28 +08:00
74d13f48b1
* feat: add badge size * test: add doc and testcase for badge size * doc: update demo doc of Badge * doc: update demo doc of Badge * test: fix test case * docs: add badge new props size addition version * style: modify size of small badge
31 lines
421 B
Markdown
31 lines
421 B
Markdown
---
|
|
order: 9
|
|
title:
|
|
zh-CN: 大小
|
|
en-US: Size
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
可以设置有数字徽标的大小。
|
|
|
|
## en-US
|
|
|
|
Set size of numeral Badge.
|
|
|
|
```jsx
|
|
import { Badge } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<>
|
|
<Badge size="default" count={5}>
|
|
<a href="#" className="head-example" />
|
|
</Badge>
|
|
<Badge size="small" count={5}>
|
|
<a href="#" className="head-example" />
|
|
</Badge>
|
|
</>,
|
|
mountNode,
|
|
);
|
|
```
|