import { cn } from "@/lib/utils"; interface Props { airbnbUrl?: string | null; bookingUrl?: string | null; className?: string; } function AirbnbLogo() { return ( ); } function BookingLogo() { return ( ); } export function BookingPlatforms({ airbnbUrl, bookingUrl, className }: Props) { if (!airbnbUrl && !bookingUrl) return null; return (
); }