mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-16 01:41:02 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
396 B
396 B
order | title | ||||
---|---|---|---|---|---|
8 |
|
zh-CN
自定义 icon。
en-US
Custom icon.
import { Result, Button } from 'antd';
import { SmileOutlined } from '@ant-design/icons';
export default () => (
<Result
icon={<SmileOutlined />}
title="Great, we have done all the operations!"
extra={<Button type="primary">Next</Button>}
/>
);