"use client" import { useIntl } from "react-intl" import { Button } from "@scandic-hotels/design-system/Button" import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon" import styles from "./cookieConsentButton.module.css" export function CookieConsentButton() { const intl = useIntl() function handleClick() { if (!window?.Cookiebot?.show) { return } window.Cookiebot.show() } return ( ) }