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

{intl.formatMessage({ id: "common.localCallCharges", defaultMessage: "Price: €0.16/min + local call charges", })}

) : null }