mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 08:59:40 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
767 B
767 B
order | title | ||||
---|---|---|---|---|---|
2 |
|
zh-CN
超过 overflowCount
的会显示为 ${overflowCount}+
,默认的 overflowCount
为 99
。
en-US
${overflowCount}+
is displayed when count is larger than overflowCount
. The default value of overflowCount
is 99
.
import { Badge, Avatar } from 'antd';
export default () => (
<>
<Badge count={99}>
<Avatar shape="square" size="large" />
</Badge>
<Badge count={100}>
<Avatar shape="square" size="large" />
</Badge>
<Badge count={99} overflowCount={10}>
<Avatar shape="square" size="large" />
</Badge>
<Badge count={1000} overflowCount={999}>
<Avatar shape="square" size="large" />
</Badge>
</>
);