UNPKG

@mftechio/react-native-country-picker-modal

Version:
8 lines 394 B
import React from 'react'; import { Text } from 'react-native'; import { useTheme } from './CountryTheme'; export const CountryText = (props) => { const { fontFamily, fontSize, onBackgroundTextColor } = useTheme(); return (React.createElement(Text, Object.assign({}, props, { style: { fontFamily, fontSize, color: onBackgroundTextColor } }))); }; //# sourceMappingURL=CountryText.js.map