react-native-country-picker-modal-xkelxmc
Version:
react-native country picker
8 lines • 385 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { Text } from 'react-native';
import { useTheme } from './CountryTheme';
export const CountryText = (props) => {
const { fontFamily, fontSize, onBackgroundTextColor } = useTheme();
return (_jsx(Text, { ...props, style: { fontFamily, fontSize, color: onBackgroundTextColor } }));
};
//# sourceMappingURL=CountryText.js.map