ant-design/components/steps/demo/icon.md

30 lines
683 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
2016-07-21 10:07:30 +08:00
title:
zh-CN: 带图标的步骤条
en-US: With icon
2016-03-31 09:40:55 +08:00
---
2015-07-08 15:53:51 +08:00
2016-07-21 10:07:30 +08:00
## zh-CN
2015-09-01 17:43:08 +08:00
通过设置 `Steps.Step``icon` 属性,可以启用自定义图标。
2015-07-08 15:53:51 +08:00
2016-07-21 10:07:30 +08:00
## en-US
You can use your own custom icons by setting the property `icon` for `Steps.Step`.
2017-02-13 10:55:53 +08:00
````jsx
import { Steps, Icon } from 'antd';
2018-06-27 15:55:04 +08:00
const Step = Steps.Step;
2015-07-08 15:53:51 +08:00
2016-07-21 14:20:49 +08:00
ReactDOM.render(
<Steps>
<Step status="finish" title="Login" icon={<Icon type="user" />} />
<Step status="finish" title="Verification" icon={<Icon type="solution" />} />
2017-12-04 14:51:31 +08:00
<Step status="process" title="Pay" icon={<Icon type="loading" />} />
2016-11-08 21:51:28 +08:00
<Step status="wait" title="Done" icon={<Icon type="smile-o" />} />
2018-06-27 15:55:04 +08:00
</Steps>,
mountNode);
2015-07-08 15:53:51 +08:00
````