import { ArrowRight } from "lucide-react"; import type { BookingNextStep } from "@/types/booking"; import { bookingGlass } from "./booking-ui.styles"; import { cn } from "@/lib/utils"; interface NextStepBannerProps { nextStep: BookingNextStep; className?: string; } export function NextStepBanner({ nextStep, className }: NextStepBannerProps) { return (

Next: {nextStep.action.replace(/_/g, " ")} {nextStep.requiredRole ? ` (${nextStep.requiredRole})` : ""}

{nextStep.description}

); }