--- order: 9 title: zh-CN: 自定义点状步骤条 en-US: Customized Dot Style --- ## zh-CN 为点状步骤条增加自定义展示。 ## en-US You can customize the display for Steps with progress dot style. ```tsx import type { StepsProps } from 'antd'; import { Popover, Steps } from 'antd'; import React from 'react'; const customDot: StepsProps['progressDot'] = (dot, { status, index }) => ( step {index} status: {status} } > {dot} ); const description = 'You can hover on the dot.'; const App: React.FC = () => ( ); export default App; ```