@niku/react-native-dropdown-select
Version:
A Dropdown select component for React Native
40 lines (36 loc) • 735 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.styles = void 0;
var _reactNative = require("react-native");
const styles = _reactNative.StyleSheet.create({
container: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
paddingVertical: 7,
paddingLeft: 8,
paddingRight: 30,
borderRadius: 3,
backgroundColor: 'white',
borderWidth: 1,
borderColor: '#f5f5f5'
},
label: {
marginRight: 5,
color: 'black'
},
placeholder: {
color: '#999',
marginRight: 5
},
icon: {
width: 20,
height: 20,
position: 'absolute',
right: 8
}
});
exports.styles = styles;
//# sourceMappingURL=styles.js.map