ant-design/components/badge/demo/basic.md
MadCcc 6776bb8916
docs: demo support react18 (#34843)
* 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
2022-04-03 23:27:45 +08:00

919 B

order title
0
zh-CN en-US
基本 Basic

zh-CN

简单的徽章展示,当 count0 时,默认不显示,但是可以使用 showZero 修改为显示。

en-US

Simplest Usage. Badge will be hidden when count is 0, but we can use showZero to show it.

import { Badge, Avatar } from 'antd';
import { ClockCircleOutlined } from '@ant-design/icons';

export default () => (
  <>
    <Badge count={5}>
      <Avatar shape="square" size="large" />
    </Badge>
    <Badge count={0} showZero>
      <Avatar shape="square" size="large" />
    </Badge>
    <Badge count={<ClockCircleOutlined style={{ color: '#f5222d' }} />}>
      <Avatar shape="square" size="large" />
    </Badge>
  </>
);