import { Box } from './Box'; export interface CountryFlagProps { countryCode: string; size?: 'sm' | 'md' | 'lg'; } export const CountryFlag = ({ countryCode, size = 'md' }: CountryFlagProps) => { const sizeMap = { sm: '1rem', md: '1.5rem', lg: '2rem', }; return ( {countryCode} ); };