CategoryCard.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. import { StyleSheet, Text, TouchableWithoutFeedback, View } from 'react-native'
  2. import React from 'react'
  3. import colors from '../../../theme/colors'
  4. import fonts from '../../../theme/fonts'
  5. const CategoryCard = ({ onPress, title, textStyle, cardStyle }) => {
  6. return (
  7. <TouchableWithoutFeedback onPress={onPress}>
  8. <View style={[cardStyle, styles.cardContainer]}>
  9. <Text style={[textStyle, styles.cardText]}>{title}</Text>
  10. </View>
  11. </TouchableWithoutFeedback>
  12. )
  13. }
  14. export default CategoryCard
  15. const styles = StyleSheet.create({
  16. cardContainer: {
  17. height: 164,
  18. width: 164,
  19. backgroundColor: colors.tertiaryColor,
  20. borderRadius: fonts.getSize(8),
  21. padding: fonts.getSize(11),
  22. justifyContent:'flex-end',
  23. },
  24. cardText: {
  25. fontFamily: fonts.type.semibold,
  26. alignSelf: 'flex-end',
  27. color: colors.white,
  28. fontSize: fonts.getSize(14),
  29. maxWidth: "80%",
  30. textAlign:'right'
  31. }
  32. })