import Body from "@scandic-hotels/design-system/Body" import Button from "@/components/TempDesignSystem/Button" import Link from "@/components/TempDesignSystem/Link" import Title from "@/components/TempDesignSystem/Text/Title" 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}
) }