Files
web/apps/scandic-web/components/HotelReservation/SignupPromo/Mobile.tsx
Anton Gunnarsson 0ffb40e94b Merged in chore/sw-3145-move-footnote (pull request #2506)
chore(SW-3145): Move Footnote to design-system

* Move Footnote to design-system


Approved-by: Joakim Jäderberg
2025-07-03 08:14:18 +00:00

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>
)
}