"use client" import { useIntl } from "react-intl" import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon" import { Typography } from "@scandic-hotels/design-system/Typography" import Link from "@/components/TempDesignSystem/Link" import styles from "./changeNameDisclaimer.module.css" export default function ChangeNameDisclaimer() { const intl = useIntl() return (

{intl.formatMessage( { defaultMessage: "Need to change your name? Please get in touch with member support at +46 8 517 517 00 or member@scandichotels.com.", }, { phone([str]) { return ( {str} ) }, email(str) { return ( {str} ) }, } )}

) }