Generate CSS step indicator.
.stepper { display: flex; align-items: center; }
.step { display: flex; align-items: center; flex: 1; }
.step .dot { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; border: 2px solid #e5e7eb; background: #fff; }
.step.active .dot { border-color: #0ea5e9; color: #0ea5e9; }
.step.done .dot { background: #0ea5e9; border-color: #0ea5e9; color: #fff; }
.step .line { flex: 1; height: 2px; background: #e5e7eb; }
.step.done .line { background: #0ea5e9; }