import {StyleSheet} from 'react-native'
export const styles = StyleSheet.create({
  mainViewStyle:{
    backgroundColor:"white",
    padding: 20,
    borderRadius: 10,
    width:"100%" 
         },
 
  TitleTextStyle:{ fontSize: 24, fontWeight: "600", color: "#141414",textAlign:"center" },
  DescriptionTextStyle:{ fontSize: 14, fontWeight: "400",textAlign:'center' ,color:'#5E5E5E',marginVertical:6},
  textViewStyle:{},
  DescriptionViewStyle:{},
  buttonViewStyle:{
    flexDirection: "row",
  marginTop:10,
    alignItems: "center",
    justifyContent:'center'
  },
  buttonStyle:{marginRight: 8 ,width:40,height:40,borderRadius:30,borderWidth:1.5,borderColor:"#AFAFAF",justifyContent:'center',alignItems:'center'},
});