import { normalizedRegionName } from "@/utils/utils"; import Image from "next/image"; type CountryFlagProps = { className?: string; countryCode: string; }; export default function CountyFlag({ className, countryCode, }: CountryFlagProps) { return ( {`${normalizedRegionName(countryCode)} ); }