iqeats/assets/styles/index.js

14 lines
321 B
JavaScript
Raw Normal View History

2021-08-11 01:17:58 -05:00
import { StyleSheet, Dimensions } from "react-native";
const WHITE = "#FFFFFF";
const DIMENSION_WIDTH = Dimensions.get("window").width;
const DIMENSION_HEIGHT = Dimensions.get("window").height;
export default StyleSheet.create({
suggestionsCard: {
backgroundColor: WHITE,
margin: 10,
padding: 10,
}
});