chore(SW-3145): Move Footnote to design-system * Move Footnote to design-system Approved-by: Joakim Jäderberg
24 lines
533 B
TypeScript
24 lines
533 B
TypeScript
"use client"
|
|
|
|
import { useIntl } from "react-intl"
|
|
|
|
import Footnote from "@scandic-hotels/design-system/Footnote"
|
|
|
|
import styles from "./signupPromo.module.css"
|
|
|
|
export default function SignupPromoMobile() {
|
|
const intl = useIntl()
|
|
return (
|
|
<div
|
|
data-footer-spacing-signup
|
|
className={styles.memberDiscountBannerMobile}
|
|
>
|
|
<Footnote color="burgundy">
|
|
{intl.formatMessage({
|
|
defaultMessage: "Join or log in while booking for member pricing.",
|
|
})}
|
|
</Footnote>
|
|
</div>
|
|
)
|
|
}
|