chore(SW-3145): Move Body component to design-system * Move Body component to design-system Approved-by: Joakim Jäderberg
31 lines
745 B
TypeScript
31 lines
745 B
TypeScript
"use client"
|
|
|
|
import { useIntl } from "react-intl"
|
|
|
|
import Body from "@scandic-hotels/design-system/Body"
|
|
|
|
import Button from "@/components/TempDesignSystem/Button"
|
|
|
|
import styles from "./retry.module.css"
|
|
|
|
import type { RetryProps } from "@/types/components/hotelReservation/bookingConfirmation/rooms/linkedReservation"
|
|
|
|
export default function Retry({ handleRefetch }: RetryProps) {
|
|
const intl = useIntl()
|
|
return (
|
|
<div className={styles.retry}>
|
|
<Body>
|
|
{intl.formatMessage({
|
|
defaultMessage: "Something went wrong!",
|
|
})}
|
|
</Body>
|
|
|
|
<Button size={"small"} onPress={handleRefetch}>
|
|
{intl.formatMessage({
|
|
defaultMessage: "Try again",
|
|
})}
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|