import { useIntl } from "react-intl" import { MaterialIcon } from "../../Icons/MaterialIcon" import { Typography } from "../../Typography" import styles from "./noPriceAvailable.module.css" export function NoPriceAvailableCard() { const intl = useIntl() return (
{intl.formatMessage({ id: "booking.noRoomsAvailable", defaultMessage: "There are no rooms available that match your request.", })}
) }