Files
web/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/PriceContainer/index.tsx
Bianca Widstam d9ec1b1f2d Merged in chore/BOOK-739-replace-caption (pull request #3428)
chore(BOOK-739): replace caption with typography

* chore(BOOK-739): replace caption with typography

* chore(BOOK-739): refactor div

* chore(BOOK-739): refactor badge

* chore(BOOK-739): remove span

* chore(BOOK-739): skeleton update

* chore(BOOK-739): update

* chore(BOOK-739): update reward

* chore(BOOK-739): update voucher currency


Approved-by: Erik Tiekstra
2026-01-14 09:33:27 +00:00

45 lines
1.2 KiB
TypeScript

import { Typography } from "@scandic-hotels/design-system/Typography"
import styles from "./priceContainer.module.css"
interface PriceContainerProps {
adultsText: string
childrenText: string
nightsText: string
price: string
text: string
totalChildren?: number
}
export default function PriceContainer({
adultsText,
childrenText,
nightsText,
price,
text,
totalChildren = 0,
}: PriceContainerProps) {
return (
<div className={styles.priceContainer}>
<div className={styles.info}>
<Typography variant="Body/Supporting text (caption)/smBold">
<p>{text}</p>
</Typography>
<Typography variant="Body/Supporting text (caption)/smRegular">
<p>
{/* eslint-disable-next-line formatjs/no-literal-string-in-jsx */}
{nightsText}, {adultsText}
{/* eslint-disable-next-line formatjs/no-literal-string-in-jsx */}
{totalChildren > 0 ? `, ${childrenText}` : ""}
</p>
</Typography>
</div>
<div className={styles.wrapper}>
<Typography variant="Title/Subtitle/md">
<p>{price}</p>
</Typography>
</div>
</div>
)
}