ant-design/components/empty/demo/customize.md
2019-12-26 14:52:13 +08:00

622 B

order title
2
zh-CN en-US
自定义 Customize

zh-CN

自定义图片链接、图片大小、描述、附属内容。

en-US

Customize image source, image size, description and extra content.

import { Empty, Button } from 'antd';

ReactDOM.render(
  <Empty
    image="https://alipay-rmsdeploy-image.cn-hangzhou.alipay.aliyun-inc.com/antfincdn/ncyfsLONGK/empty.svg"
    imageStyle={{
      height: 60,
    }}
    description={
      <span>
        Customize <a href="#API">Description</a>
      </span>
    }
  >
    <Button type="primary">Create Now</Button>
  </Empty>,
  mountNode,
);