BookmarkButton.js 888 B

1234567891011121314151617181920212223242526272829
  1. import { StyleSheet} from 'react-native'
  2. import React from 'react'
  3. import colors from '../../../theme/colors'
  4. import fonts from '../../../theme/fonts'
  5. import IonIcon from 'react-native-vector-icons/Ionicons'
  6. import ButtonWrapper from '../../atoms/ButtonWrapper'
  7. const BookmarkButton = ({ buttonStyle,iconSize,iconColor, onPress}) => {
  8. return (
  9. <ButtonWrapper onPress={onPress} buttonStyle={buttonStyle}>
  10. <IonIcon name='ios-bookmark-outline' color={iconColor ? iconColor : styles.icon.color} size={iconSize ? iconSize : styles.icon.fontSize}/>
  11. </ButtonWrapper>
  12. )
  13. }
  14. export default BookmarkButton
  15. const styles = StyleSheet.create({
  16. buttonStyle:{
  17. alignItems: 'center',
  18. justifyContent: 'center',
  19. height:'auto',
  20. width:'auto'
  21. },
  22. icon:{
  23. color: colors.topColor,
  24. fontSize: fonts.getSize(16)
  25. }
  26. })