--- order: 2 title: zh-CN: 带图标的步骤条 en-US: With icon --- ## zh-CN 通过设置 `items` 的 `icon` 属性,可以启用自定义图标。 ## en-US You can use your own custom icons by setting the property `icon` for `items`. ```tsx import { LoadingOutlined, SmileOutlined, SolutionOutlined, UserOutlined } from '@ant-design/icons'; import { Steps } from 'antd'; import React from 'react'; const App: React.FC = () => ( , }, { title: 'Verification', status: 'finish', icon: , }, { title: 'Pay', status: 'process', icon: , }, { title: 'Done', status: 'wait', icon: , }, ]} /> ); export default App; ```