import "./WalkingLoading.css"; export function WalkingLoading() { return (
{Array.from({ length: 2 }).map((_, i) => (
{/* Title */}
{/* Subtitle */}
{/* Progress dots */}
{Array.from({ length: 6 }).map((_, dotIdx) => (
{dotIdx < 5 && (
)}
))}
))}
); }