"use client" import { useState } from "react" import { useIntl } from "react-intl" import { Button } from "@scandic-hotels/design-system/Button" import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon" import Modal from "@scandic-hotels/design-system/Modal" import { Typography } from "@scandic-hotels/design-system/Typography" import styles from "./guaranteeInfo.module.css" interface GuaranteeInfoProps { buttonClassName?: string } export function GuaranteeInfo({ buttonClassName }: GuaranteeInfoProps) { const [isOpen, setIsOpen] = useState(false) const intl = useIntl() return ( <>

{intl.formatMessage({ id: "enterDetails.guaranteeInfo.description", defaultMessage: "The hotel will hold your booking, even if you arrive after 18:00. In case of a no-show, your credit card will be charged for the first night.", })}

) }