* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
23 lines
580 B
TypeScript
23 lines
580 B
TypeScript
import React from 'react';
|
|
import { hasFlag } from 'country-flag-icons';
|
|
import * as Flags from 'country-flag-icons/react/3x2';
|
|
|
|
interface CountryFlagProps {
|
|
countryCode: string;
|
|
style?: React.CSSProperties;
|
|
}
|
|
|
|
const CountryFlagIcon: React.FC<CountryFlagProps> = ({
|
|
countryCode,
|
|
style,
|
|
}) => {
|
|
const FlagComponent = Flags[countryCode as keyof typeof Flags];
|
|
|
|
return hasFlag(countryCode) && FlagComponent ? (
|
|
<FlagComponent style={style} />
|
|
) : (
|
|
<div className="text-xs bg-gray-bg px-1 rounded color-white">N/A</div>
|
|
);
|
|
};
|
|
|
|
export default CountryFlagIcon;
|