"use client" import { BookingCodeChip } from "@scandic-hotels/design-system/BookingCodeChip" import styles from "./row.module.css" interface BookingCodeRowProps { bookingCode?: string isBreakfastIncluded?: boolean isCampaignRate?: boolean } export default function BookingCodeRow({ bookingCode, isBreakfastIncluded, isCampaignRate, }: BookingCodeRowProps) { if (!bookingCode) { return null } return ( ) }