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
28 lines
396 B
Markdown
28 lines
396 B
Markdown
---
|
|
order: 8
|
|
title:
|
|
zh-CN: 自定义 icon
|
|
en-US: Custom icon
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
自定义 icon。
|
|
|
|
## en-US
|
|
|
|
Custom icon.
|
|
|
|
```jsx
|
|
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>}
|
|
/>
|
|
);
|
|
```
|