ant-design/components/steps/demo/icon.md
2016-07-21 14:39:28 +08:00

552 B

order title
2
zh-CN en-US
带图标的步骤条 With icon

zh-CN

通过设置 Steps.Stepicon 属性,可以启用自定义图标。

en-US

You can use your own custom icons by setting the property icon for Steps.Step.

import { Steps } from 'antd';
const Step = Steps.Step;

ReactDOM.render(
  <Steps>
    <Step status="finish" title="步骤1" icon="cloud" />
    <Step status="process" title="步骤2" icon="apple" />
    <Step status="wait" title="步骤3" icon="github" />
  </Steps>
, mountNode);