mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +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
421 B
421 B
order | title | ||||
---|---|---|---|---|---|
9 |
|
zh-CN
可以设置有数字徽标的大小。
en-US
Set size of numeral Badge.
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,
);