mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
683 B
683 B
order | title | ||||
---|---|---|---|---|---|
2 |
|
zh-CN
通过设置 Steps.Step
的 icon
属性,可以启用自定义图标。
en-US
You can use your own custom icons by setting the property icon
for Steps.Step
.
import { Steps, Icon } from 'antd';
const Step = Steps.Step;
ReactDOM.render(
<Steps>
<Step status="finish" title="Login" icon={<Icon type="user" />} />
<Step status="finish" title="Verification" icon={<Icon type="solution" />} />
<Step status="process" title="Pay" icon={<Icon type="loading" />} />
<Step status="wait" title="Done" icon={<Icon type="smile-o" />} />
</Steps>,
mountNode,
);