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.
|
|
|
# 带ICON图标的步骤条
|
|
|
|
|
|
|
|
- order: 2
|
|
|
|
|
|
|
|
通过设置 `Steps.Step` 的 `icon` 属性,可以启用自定义图标。
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
var Steps = antd.Steps;
|
|
|
|
var Step = Steps.Step;
|
|
|
|
var container = document.getElementById('components-steps-demo-icon');
|
|
|
|
|
|
|
|
React.render(<Steps>
|
|
|
|
<Step status='finish' title='步骤1' icon='cloud' />
|
|
|
|
<Step status='process' title='步骤2' icon='apple' />
|
|
|
|
<Step status='wait' title='步骤3' icon='github' />
|
|
|
|
</Steps>, container);
|
|
|
|
````
|