Chore/SW-2878 extract booking confirmation pag * chore(SW-2878): Moved booking confirmation page to booking-flow package * chore(SW-2878): Fixed promo styles as per design * chore(SW-2878): Kept tiny duplicate function to avoid export from booking-flow package Approved-by: Anton Gunnarsson
34 lines
790 B
TypeScript
34 lines
790 B
TypeScript
"use client"
|
|
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { Button } from "@scandic-hotels/design-system/Button"
|
|
import { Typography } from "@scandic-hotels/design-system/Typography"
|
|
|
|
import styles from "./retry.module.css"
|
|
|
|
export interface RetryProps {
|
|
handleRefetch: () => void
|
|
}
|
|
|
|
export default function Retry({ handleRefetch }: RetryProps) {
|
|
const intl = useIntl()
|
|
return (
|
|
<div className={styles.retry}>
|
|
<Typography variant={"Body/Paragraph/mdRegular"}>
|
|
<p>
|
|
{intl.formatMessage({
|
|
defaultMessage: "Something went wrong!",
|
|
})}
|
|
</p>
|
|
</Typography>
|
|
|
|
<Button size={"Small"} onPress={handleRefetch}>
|
|
{intl.formatMessage({
|
|
defaultMessage: "Try again",
|
|
})}
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|