import {Dimensions, StyleSheet} from 'react-native';
import dimension from '../../values/dimension';
import colors from '../../values/colors';
import {color} from 'react-native-reanimated';
const windowWidth = Dimensions.get('window').width;
const styles = StyleSheet.create({
  h2: {
    fontWeight: '600',
    fontSize: 18,
    color: 'black',
  },
  view: {
    width: windowWidth - 10,
    alignSelf: 'center',
    borderWidth: 1,
    borderRadius: 5,
    backgroundColor: colors.white,
    borderColor: colors.white,
    padding: 10,
    marginTop: 10,
    padding: 15,
  },
  marginTop: {
    flexDirection: 'row',
    justifyContent: 'space-between',
    marginBottom: 10,
  },
});

export default styles;