feat: 本次提交更新内容如下

存了修复了bug
This commit is contained in:
笔记本里的永平
2025-07-09 19:05:49 +08:00
parent 4421cf8ce8
commit b050b78f60
8 changed files with 939 additions and 381 deletions

View File

@@ -4,13 +4,15 @@ import type React from "react"
import { cn } from "@/lib/utils"
interface Step {
id: number
title: string
icon: React.ReactNode
}
interface StepIndicatorProps {
currentStep: number
steps: {
id: number
title: string
icon: React.ReactNode
}[]
steps: Step[]
}
export default function StepIndicator({ currentStep, steps }: StepIndicatorProps) {