mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
7fd093bd0a
* docs: add general components TS demo * docs: add layout components TS demo * docs: add navigation components TS demo * docs: add data entry components TS demo * chore(deps): add types for qs * docs: add data display TS demo * docs: add feedback components TS demo * docs: add other components TS demo * chore(deps): add types * docs: unified demo code style * docs: fix lint error * docs: add demo TS type * docs: fix demo TS type * test: update snapshot * docs: fix TS demo * feat: update Rate character type * docs: fix lint error * feat: update Rate character type * feat: update Rate character type
47 lines
974 B
Markdown
47 lines
974 B
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本
|
|
en-US: Basic
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
简单的徽章展示,当 `count` 为 `0` 时,默认不显示,但是可以使用 `showZero` 修改为显示。
|
|
|
|
## en-US
|
|
|
|
Simplest Usage. Badge will be hidden when `count` is `0`, but we can use `showZero` to show it.
|
|
|
|
```tsx
|
|
import React from 'react';
|
|
import { Badge, Avatar } from 'antd';
|
|
import { ClockCircleOutlined } from '@ant-design/icons';
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<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>
|
|
</>
|
|
);
|
|
|
|
export default App;
|
|
```
|
|
|
|
<style>
|
|
.ant-badge:not(.ant-badge-not-a-wrapper) {
|
|
margin-right: 20px;
|
|
}
|
|
.ant-badge.ant-badge-rtl:not(.ant-badge-not-a-wrapper) {
|
|
margin-right: 0;
|
|
margin-left: 20px;
|
|
}
|
|
</style>
|