import { useIntl } from 'react-intl' import { MaterialIcon } from '@scandic-hotels/design-system/Icons/MaterialIcon' import { Typography } from '@scandic-hotels/design-system/Typography' import styles from './noPriceAvailable.module.css' export function NoPriceAvailableCard() { const intl = useIntl() return (
{intl.formatMessage({ defaultMessage: 'There are no rooms available that match your request.', })}
) }