in src/components/Stepper/Step.tsx [20:30]
function renderDot(status?: StepStatus) {
if (status) {
const iconMap: Record<string, string> = {
success: 'check-circle-fill',
fail: 'warning-circle-fill',
abort: 'dash-circle-fill',
};
return <Icon type={iconMap[status]} />;
}
return <div className="Step-dot" />;
}