@audira/carbon-react-native
Version:
Build React Native apps with component and shared patterns using Carbon
24 lines (23 loc) • 402 B
JavaScript
"use strict";
import { StyleSheet } from 'react-native';
export const CommonStyleSheet = StyleSheet.create({
w_full: {
width: '100%'
},
h_full: {
height: '100%'
},
overflow_hidden: {
overflow: 'hidden'
},
absolute: {
position: 'absolute'
},
relative: {
position: 'relative'
},
rtl: {
direction: 'rtl'
}
});
//# sourceMappingURL=common-style-sheet.js.map