+
{imageNode}
@@ -83,4 +68,13 @@ const Empty: React.SFC
= (props: EmptyProps) => (
);
+type EmptyType = typeof OriginEmpty & {
+ PRESENTED_IMAGE_DEFAULT: string;
+ PRESENTED_IMAGE_SIMPLE: string;
+};
+
+const Empty: EmptyType = OriginEmpty as EmptyType;
+Empty.PRESENTED_IMAGE_DEFAULT = defaultEmptyImg;
+Empty.PRESENTED_IMAGE_SIMPLE = simpleEmptyImg;
+
export default Empty;
diff --git a/components/empty/index.zh-CN.md b/components/empty/index.zh-CN.md
index 184208b90a..8380a0530a 100644
--- a/components/empty/index.zh-CN.md
+++ b/components/empty/index.zh-CN.md
@@ -12,6 +12,16 @@ cols: 1
当目前没有数据时,用于显式的用户提示。
+## 内置图片 (3.16.0 以上版本)
+
++ Empty.PRESENTED_IMAGE_SIMPLE
+
+
+
++ Empty.PRESENTED_IMAGE_DEFAULT
+
+
+
## API
```jsx
@@ -23,5 +33,5 @@ cols: 1
| 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
| description | 自定义描述内容 | string \| ReactNode | - |
-| imageSize | 图片尺寸 | number | - |
-| image | 设置显示图片,为 string 时表示自定义图片地址。在 3.16.0 后,可以设置为 'simple' 选择另一种风格的内置图片 | string \| ReactNode | default |
+| imageStyle | 图片样式 | CSSProperties | - |
+| image | 设置显示图片,为 string 时表示自定义图片地址。 | string \| ReactNode | `Empty.PRESENTED_IMAGE_DEFAULT` |