import { useIntl } from "react-intl" import Subtitle from "@/components/TempDesignSystem/Text/Subtitle" import { PriceTableProps } from "@/types/components/hotelReservation/selectRate/flexibilityOption" export default function PriceTable({ publicPrice, memberPrice, }: PriceTableProps) { const intl = useIntl() const { localPrice: publicLocalPrice, requestedPrice: publicRequestedPrice } = publicPrice || {} const { localPrice: memberLocalPrice, requestedPrice: memberRequestedPrice } = memberPrice || {} const showRequestedPrice = publicRequestedPrice && memberRequestedPrice return (