import React from 'react';
import type { StepsProps } from 'antd';
import { Popover, Steps } from 'antd';
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;