react-native-country-picker-modal-xkelxmc
Version:
react-native country picker
19 lines • 529 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { StyleSheet, View } from 'react-native';
const styles = StyleSheet.create({
row: {
flexDirection: 'row',
alignItems: 'center'
}
});
export const Row = (props) => (_jsx(View, { ...props, style: [
styles.row,
props.style,
props.fullWidth && {
width: '100%',
justifyContent: 'space-between',
padding: 10,
paddingHorizontal: 50
}
] }));
//# sourceMappingURL=Row.js.map