1 const flags = require.context('@proton/styles/assets/img/flags', true, /.svg$/);
3 const flagsMap = flags.keys().reduce((acc, key) => {
4 acc[key] = () => flags(key);
7 }, {} as Record<string, () => string>);
9 export const getFlagSvg = (abbreviation: string) => flagsMap[`./${abbreviation}.svg`]?.();