2020-05-08 14:50:42 +08:00

404 B

order, title
order title
8
zh-CN en-US
自定义 icon Custom icon

zh-CN

自定义 icon。

en-US

Custom icon.

import { Result, Button } from 'antd';
import { SmileOutlined } from '@ant-design/icons';

ReactDOM.render(
  <Result
    icon={<SmileOutlined />}
    title="Great, we have done all the operations!"
    extra={<Button type="primary">Next</Button>}
  />,
  mountNode,
);