import { Typography } from "@scandic-hotels/design-system/Typography" import { Country } from "@scandic-hotels/trpc/types/country" import { getIntl } from "@/i18n" interface LocalCallChargesProps { country: string } export default async function LocalCallCharges({ country, }: LocalCallChargesProps) { const intl = await getIntl() return country === Country.Finland ? (

{intl.formatMessage({ defaultMessage: "Price 0,16 €/min + local call charges", })}

) : null }