import Body from "@scandic-hotels/design-system/Body" import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton" import Title from "@scandic-hotels/design-system/Title" import Link from "@/components/TempDesignSystem/Link" import styles from "./promo.module.css" import type { PromoProps } from "@/types/components/hotelReservation/bookingConfirmation/promo" export default function Promo({ buttonText, href, text, title }: PromoProps) { return (
{title} {text}
) }