"use client" import { useIntl } from "react-intl" import { FakeButton } from "@scandic-hotels/design-system/FakeButton" import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon" import styles from "./mapWithButtonWrapper.module.css" export function MapWithButtonWrapper({ children }: React.PropsWithChildren) { const intl = useIntl() return (
{children} {intl.formatMessage({ id: "destination.seeOnMap", defaultMessage: "See on map", })}
) }