native-base
Version:
Essential cross-platform UI components for React Native
37 lines (36 loc) • 559 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.POSITIONS = void 0;
let INSET = 0;
const POSITIONS = {
'bottom': {
bottom: INSET,
left: 0,
right: 0
},
'top': {
top: INSET,
left: 0,
right: 0
},
'top-right': {
top: INSET,
right: INSET
},
'top-left': {
top: INSET,
left: INSET
},
'bottom-left': {
bottom: INSET,
left: INSET
},
'bottom-right': {
bottom: INSET,
right: INSET
}
};
exports.POSITIONS = POSITIONS;
//# sourceMappingURL=utils.js.map
;