"use client" import { useIntl } from "react-intl" import { MaterialIcon } from "@scandic-hotels/design-system/Icons" import { dt } from "@/lib/dt" import Countdown from "@/components/Countdown" import Caption from "@/components/TempDesignSystem/Text/Caption" import useRedeemFlow from "./useRedeemFlow" import styles from "./redeem.module.css" export default function TimedRedeemedBadge() { const intl = useIntl() const { timeRemaining, setTimeRemaining } = useRedeemFlow() const duration = dt.duration(timeRemaining) return ( <>
{intl.formatMessage({ id: "Redeemed & valid through:", })}
setTimeRemaining(newTime)} /> ) }