Loading mobile/src/travel_history/components/share_button.tsx 0 → 100644 +14 −0 Original line number Diff line number Diff line import { TouchableOpacity } from "react-native-gesture-handler"; import { Feather } from '@expo/vector-icons'; interface ShareButtonProps { onPress: () => void; } export const ShareButton = ({ onPress } : ShareButtonProps) => { return ( <TouchableOpacity onPress={onPress}> <Feather name="share-2" size={24} color="white" /> </TouchableOpacity> ); }; No newline at end of file Loading
mobile/src/travel_history/components/share_button.tsx 0 → 100644 +14 −0 Original line number Diff line number Diff line import { TouchableOpacity } from "react-native-gesture-handler"; import { Feather } from '@expo/vector-icons'; interface ShareButtonProps { onPress: () => void; } export const ShareButton = ({ onPress } : ShareButtonProps) => { return ( <TouchableOpacity onPress={onPress}> <Feather name="share-2" size={24} color="white" /> </TouchableOpacity> ); }; No newline at end of file