37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
import { useIntl } from "react-intl"
|
|
|
|
import Caption from "@/components/TempDesignSystem/Text/Caption"
|
|
import Subtitle from "@/components/TempDesignSystem/Text/Subtitle"
|
|
|
|
import styles from "./hotelVoucherCard.module.css"
|
|
|
|
import { CurrencyEnum } from "@/types/enums/currency"
|
|
import type { ProductTypeVoucher } from "@/types/trpc/routers/hotel/availability"
|
|
|
|
export default function HotelVoucherCard({
|
|
productTypeVoucher,
|
|
}: {
|
|
productTypeVoucher: ProductTypeVoucher
|
|
}) {
|
|
const intl = useIntl()
|
|
return (
|
|
<div className={styles.voucherCard}>
|
|
<div className={styles.voucherRow}>
|
|
<Caption>
|
|
{intl.formatMessage({
|
|
defaultMessage: "From",
|
|
})}
|
|
</Caption>
|
|
<div className={styles.voucher}>
|
|
<Subtitle type="two" color="uiTextHighContrast">
|
|
{productTypeVoucher.numberOfVouchers}
|
|
</Subtitle>
|
|
<Caption color="uiTextHighContrast" className={styles.currency}>
|
|
{CurrencyEnum.Voucher}
|
|
</Caption>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|