mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 16:33:26 +00:00
16 lines
355 B
TypeScript
16 lines
355 B
TypeScript
import { Image } from "tamagui";
|
|
|
|
// TODO: Improve flag icons. This is incomplete.
|
|
export function FlagIcon({ languageCode }: { languageCode: string }) {
|
|
return (
|
|
<Image
|
|
source={{
|
|
uri: `https://flagcdn.com/w80/${languageCode.toLowerCase()}.png`,
|
|
}}
|
|
width="100%"
|
|
height="100%"
|
|
resizeMode="contain"
|
|
/>
|
|
);
|
|
}
|