import React from "react" import { cn } from "@/app/lib/utils" interface StepsProps { currentStep: number className?: string children: React.ReactNode } interface StepProps { title: string description?: string } export function Steps({ currentStep, className, children }: StepsProps) { const steps = React.Children.toArray(children) return (