openreplay/frontend/app/components/shared/CountryFlagIcon.tsx
Андрей Бабушкин b822b1c067 applied eslint
2025-02-26 20:31:01 +01:00

20 lines
575 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;