"use client" import { cn } from "@/lib/utils" import { ArrowLeft, ArrowRight, Loader2 } from "lucide-react" export function FooterBar({ onBack, onNext, nextLabel = "Neste", nextDisabled, backDisabled, backLabel = "Tilbake", submitting, isSubmitStep, }: { onBack: () => void onNext: () => void nextLabel?: string nextDisabled?: boolean backDisabled?: boolean backLabel?: string submitting?: boolean isSubmitStep?: boolean }) { return (