2019-06-30 20:15:44 +08:00
|
|
|
---
|
2019-07-04 15:14:13 +08:00
|
|
|
order: 8
|
2019-06-30 20:15:44 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 自定义 icon
|
|
|
|
en-US: Custom icon
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
自定义 icon。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Custom icon.
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
|
|
|
import React from 'react';
|
2019-08-13 14:07:17 +08:00
|
|
|
import { Result, Button } from 'antd';
|
2019-11-28 12:34:33 +08:00
|
|
|
import { SmileOutlined } from '@ant-design/icons';
|
2019-06-30 20:15:44 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => (
|
2019-06-30 20:15:44 +08:00
|
|
|
<Result
|
2019-11-28 12:34:33 +08:00
|
|
|
icon={<SmileOutlined />}
|
2019-06-30 20:15:44 +08:00
|
|
|
title="Great, we have done all the operations!"
|
|
|
|
extra={<Button type="primary">Next</Button>}
|
2022-04-03 23:27:45 +08:00
|
|
|
/>
|
2019-06-30 20:15:44 +08:00
|
|
|
);
|
2022-05-19 09:46:26 +08:00
|
|
|
|
|
|
|
export default App;
|
2019-06-30 20:15:44 +08:00
|
|
|
```
|