You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
order: 2
|
|
|
|
title:
|
|
|
|
zh-CN: 带图标的步骤条
|
|
|
|
en-US: With icon
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
通过设置 `Steps.Step` 的 `icon` 属性,可以启用自定义图标。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
You can use your own custom icons by setting the property `icon` for `Steps.Step`.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Steps } from 'antd';
|
|
|
|
import { User, Solution, Loading, Smile } from '@ant-design/icons';
|
|
|
|
|
|
|
|
const { Step } = Steps;
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Steps>
|
|
|
|
<Step status="finish" title="Login" icon={<User />} />
|
|
|
|
<Step status="finish" title="Verification" icon={<Solution />} />
|
|
|
|
<Step status="process" title="Pay" icon={<Loading />} />
|
|
|
|
<Step status="wait" title="Done" icon={<Smile />} />
|
|
|
|
</Steps>,
|
|
|
|
mountNode,
|
|
|
|
);
|
|
|
|
```
|