ShareButton.js 849 B

123456789101112131415161718192021222324252627282930
  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 ShareButton = ({ size, buttonStyle, iconColor, iconSize, onPress }) => {
  8. return (
  9. <ButtonWrapper onPress={onPress} buttonStyle={buttonStyle}>
  10. <IonIcon name='share-social-outline' color={iconColor ? iconColor : styles.icon.color} size={iconSize ? iconSize : styles.icon.fontSize} />
  11. </ButtonWrapper>
  12. )
  13. }
  14. export default ShareButton
  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. })