Files
web/packages/booking-flow/lib/components/EnterDetails/Confirm/SmsConfirmation.tsx
2025-11-24 07:24:52 +00:00

22 lines
628 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 get my booking confirmation via sms",
})}
</span>
</Typography>
</Checkbox>
)
}