mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-10 14:07:59 -05:00
14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
import React from 'react';
|
|
import { View } from 'react-native';
|
|
import { Icon } from 'react-native-elements';
|
|
import { Colors } from './ui/styleUtils';
|
|
|
|
export function LanguageSelector() {
|
|
|
|
return (
|
|
<View>
|
|
<Icon name="language" color={Colors.Orange} />
|
|
</View>
|
|
);
|
|
}
|