CircularPrimaryBackButton.js 997 B

123456789101112131415161718192021222324252627282930313233343536
  1. import {StyleSheet, Text, View} from 'react-native';
  2. import React from 'react';
  3. import {TouchableWithoutFeedback} from 'react-native-gesture-handler';
  4. import colors from '../../../theme/colors';
  5. import EntypoIcon from 'react-native-vector-icons/Entypo'
  6. import fonts from '../../../theme/fonts';
  7. const CircularPrimaryBackButton = ({onPress}) => {
  8. return (
  9. <TouchableWithoutFeedback onPress={onPress}>
  10. <View style={styles.buttonContainer}>
  11. <EntypoIcon
  12. color={colors.tertiaryColor}
  13. size={20}
  14. name="chevron-thin-left"
  15. />
  16. </View>
  17. </TouchableWithoutFeedback>
  18. );
  19. };
  20. export default CircularPrimaryBackButton;
  21. const styles = StyleSheet.create({
  22. buttonContainer: {
  23. borderRadius: 128,
  24. height: fonts.getSize(34),
  25. width: fonts.getSize(34),
  26. backgroundColor: colors.white,
  27. borderColor: colors.lightGray,
  28. borderWidth: 2,
  29. paddingVertical: fonts.getSize(6),
  30. paddingHorizontal: fonts.getSize(6)
  31. },
  32. });