You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
order: 0
|
|
|
|
title:
|
|
|
|
zh-CN: 基本
|
|
|
|
en-US: Basic
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
头像有三种尺寸,两种形状可选。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Three sizes and two shapes are available.
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
import { Avatar } from 'antd';
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<Avatar size="large" icon="user" />
|
|
|
|
<Avatar icon="user" />
|
|
|
|
<Avatar size="small" icon="user" />
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<Avatar shape="square" size="large" icon="user" />
|
|
|
|
<Avatar shape="square" icon="user" />
|
|
|
|
<Avatar shape="square" size="small" icon="user" />
|
|
|
|
</div>
|
|
|
|
</div>,
|
|
|
|
mountNode);
|
|
|
|
````
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#components-avatar-demo-basic .ant-avatar {
|
|
|
|
margin-top: 16px;
|
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
</style>
|