2018-12-26 16:01:00 +08:00
|
|
|
---
|
|
|
|
order: 2
|
|
|
|
title:
|
|
|
|
zh-CN: 自定义
|
|
|
|
en-US: Customize
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
2019-03-18 12:01:38 +08:00
|
|
|
自定义图片链接、图片大小、描述、附属内容。
|
2018-12-26 16:01:00 +08:00
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
2019-03-18 12:01:38 +08:00
|
|
|
Customize image source, image size, description and extra content.
|
2018-12-26 16:01:00 +08:00
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Empty, Button } from 'antd';
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Empty
|
2020-01-09 15:28:52 +08:00
|
|
|
image="https://gw.alipayobjects.com/zos/antfincdn/ZHrcdLPrvN/empty.svg"
|
2019-03-20 17:45:35 +08:00
|
|
|
imageStyle={{
|
2019-04-03 18:59:02 +08:00
|
|
|
height: 60,
|
2019-03-20 17:45:35 +08:00
|
|
|
}}
|
2018-12-26 16:01:00 +08:00
|
|
|
description={
|
|
|
|
<span>
|
|
|
|
Customize <a href="#API">Description</a>
|
|
|
|
</span>
|
|
|
|
}
|
|
|
|
>
|
2019-01-29 12:21:03 +08:00
|
|
|
<Button type="primary">Create Now</Button>
|
2018-12-26 16:01:00 +08:00
|
|
|
</Empty>,
|
2019-03-20 17:45:35 +08:00
|
|
|
mountNode,
|
2018-12-26 16:01:00 +08:00
|
|
|
);
|
|
|
|
```
|