mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
64b905e9bd
* update icons deps * update all icon ref * fix lint * update snapshot
758 B
758 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 } from 'antd';
import { UserOutlined, SolutionOutlined, LoadingOutlined, SmileOutlined } from '@ant-design/icons';
const { Step } = Steps;
ReactDOM.render(
<Steps>
<Step status="finish" title="Login" icon={<UserOutlined />} />
<Step status="finish" title="Verification" icon={<SolutionOutlined />} />
<Step status="process" title="Pay" icon={<LoadingOutlined />} />
<Step status="wait" title="Done" icon={<SmileOutlined />} />
</Steps>,
mountNode,
);