feat(BOOK-436): Added manage cookie bot dynamic content to content pages
Approved-by: Linus Flood
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
"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 (
|
||||
<Button
|
||||
variant="Text"
|
||||
size="Medium"
|
||||
typography="Body/Paragraph/mdBold"
|
||||
wrapping={false}
|
||||
onPress={handleClick}
|
||||
className={styles.cookieConsentButton}
|
||||
>
|
||||
{intl.formatMessage({
|
||||
defaultMessage: "Manage cookies",
|
||||
})}
|
||||
<MaterialIcon icon="chevron_right" size={24} color="CurrentColor" />
|
||||
</Button>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user