"use client" import { useIntl } from "react-intl" import { Divider } from "@scandic-hotels/design-system/Divider" import { Progress } from "@scandic-hotels/design-system/Progress" import { Typography } from "@scandic-hotels/design-system/Typography" import styles from "./l6Progress.module.css" interface ProgressSectionProps { nightsStayed: number progressValue: number maxNights: number bestFriendLabel: string } export function ProgressSection({ nightsStayed, progressValue, maxNights, bestFriendLabel, }: ProgressSectionProps) { const intl = useIntl() return (