import Caption from "@/components/TempDesignSystem/Text/Caption" import Subtitle from "@/components/TempDesignSystem/Text/Subtitle" 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 (