import { Box } from '@/ui/Box'; import { motion } from 'framer-motion'; interface StepProgressRailProps { currentStep: number; totalSteps: number; } export function StepProgressRail({ currentStep, totalSteps }: StepProgressRailProps) { const progress = (currentStep / totalSteps) * 100; return ( ); }