import { Image,ImageBackground, StyleSheet, Text, TouchableWithoutFeedback, View } from 'react-native' import React from 'react' import colors from '../../../theme/colors' import images from '../../../assets/images/images' import fonts from '../../../theme/fonts' const NoBookmarkSection = () => { return ( You have no bookmarked news Explore News ) } export default NoBookmarkSection const styles = StyleSheet.create({ container:{ backgroundColor:colors.white, height:'100%', alignItems:'center', justifyContent:'center', paddingHorizontal: fonts.getSize(16) }, imageContainer:{ }, image:{ height:300, width: 300, maxHeight: '80%', maxWidth: '80%' }, headline:{ color: colors.topColor, fontFamily: fonts.type.semibold, fontSize: fonts.getSize(16), paddingBottom: fonts.getSize(32) }, button:{ backgroundColor: colors.tertiaryColor, marginHorizontal: fonts.getSize(24), maxWidth: '100%', width:'100%', flexDirection: 'row', alignItems:'center', justifyContent:'center', borderRadius: fonts.getSize(4) }, buttonText:{ paddingVertical: fonts.getSize(12), color:colors.white, fontFamily:fonts.type.regular } })