fix(BOOK-644): update ui reward night gla * fix(BOOK-644): update ut reward night gla Approved-by: Erik Tiekstra Approved-by: Matilda Landström
22 lines
633 B
TypeScript
22 lines
633 B
TypeScript
import { useIntl } from "react-intl"
|
|
|
|
import Checkbox from "@scandic-hotels/design-system/Form/Checkbox"
|
|
import { Typography } from "@scandic-hotels/design-system/Typography"
|
|
|
|
export default function SmsConfirmation() {
|
|
const intl = useIntl()
|
|
return (
|
|
<Checkbox name="smsConfirmation">
|
|
<Typography variant="Body/Supporting text (caption)/smRegular">
|
|
<span>
|
|
{intl.formatMessage({
|
|
id: "booking.smsConfirmationLabel",
|
|
defaultMessage:
|
|
"I would like to receive my booking confirmation via sms.",
|
|
})}
|
|
</span>
|
|
</Typography>
|
|
</Checkbox>
|
|
)
|
|
}
|