import { StyleSheet } from 'react-native';

export default StyleSheet.create({
	flex: {
		flex: 1,
	},
	boxShadow: {
		shadowColor: 'rgba(0, 0, 0, 0.24)',
		shadowOffset: {
			width: 0,
			height: 2,
		},
		shadowRadius: 7,
		shadowOpacity: 1,
		elevation: 8,
	},
});
