1234567891011121314151617181920 |
- import { StyleSheet, Text, View } from 'react-native'
- import React from 'react'
- import { IconButton } from 'react-native-paper'
- import colors from '../../../theme/colors'
- import fonts from '../../../theme/fonts'
- const ShareButton = ({size, onPress}) => {
- return (
- <IconButton
- icon='share-outline'
- iconColor={colors.topColor}
- size={size ?? fonts.getSize(24)}
- onPress={onPress}
- />
- )
- }
- export default ShareButton
- // const styles = StyleSheet.create({})
|