import { useIntl } from "react-intl" import { ErrorCircleIcon } from "@/components/Icons" import Body from "@/components/TempDesignSystem/Text/Body" import HotelPriceCard from "./HotelPriceCard" import styles from "./hotelPriceList.module.css" import { HotelPriceListProps } from "@/types/components/hotelReservation/selectHotel/hotePriceListProps" export default function HotelPriceList({ price }: HotelPriceListProps) { const intl = useIntl() return ( <> {price ? ( <> ) : (
{intl.formatMessage({ id: "There are no rooms available that match your request", })}
)} ) }