import { useIntl } from "react-intl" import { ErrorCircleIcon } from "@/components/Icons" import Body from "@/components/TempDesignSystem/Text/Body" import styles from "./noPriceAvailable.module.css" export default function NoPriceAvailableCard() { const intl = useIntl() return (
{intl.formatMessage({ id: "There are no rooms available that match your request.", })}
) }