// Global Imports
import { StyleSheet, ViewStyle } from 'react-native';

// Local Imports

export const ModalStyles = StyleSheet.create({
	container: {
		flex: 1,
		backgroundColor: '#fff',
	} as ViewStyle,
	listArea: {
		flex: 1,
		flexDirection: 'row',
	} as ViewStyle,
	keyboardContainer: {
		flex: 1,
		flexDirection: 'row',
	} as ViewStyle,
});
