ant-design/components/avatar/demo/badge.md

31 lines
477 B
Markdown
Raw Normal View History

2017-06-09 15:00:44 +08:00
---
order: 3
title:
zh-CN: 带徽标的头像
en-US: With Badge
---
## zh-CN
通常用于消息提示。
## en-US
2019-04-20 06:33:10 +08:00
Usually used for reminders and notifications.
2017-06-09 15:00:44 +08:00
````jsx
import { Avatar, Badge } from 'antd';
ReactDOM.render(
<div>
<span style={{ marginRight: 24 }}>
<Badge count={1}><Avatar shape="square" icon="user" /></Badge>
</span>
<span>
<Badge dot><Avatar shape="square" icon="user" /></Badge>
</span>
2018-06-27 15:55:04 +08:00
</div>,
2018-11-28 15:00:03 +08:00
mountNode
);
2017-06-09 15:00:44 +08:00
````