import { StyleSheet, } from 'react-native' import React from 'react' import colors from '../../../theme/colors' import fonts from '../../../theme/fonts' import IonIcon from 'react-native-vector-icons/Ionicons' import ButtonWrapper from '../../atoms/ButtonWrapper' const ShareButton = ({ size, buttonStyle, iconColor, iconSize, onPress }) => { return ( ) } export default ShareButton const styles = StyleSheet.create({ buttonStyle: { alignItems: 'center', justifyContent: 'center', height: 'auto', width: 'auto' }, icon: { color: colors.topColor, fontSize: fonts.getSize(16) } })