Commit fe69283e authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Se creó el boton de compartir para la pestaña de viajes

parent 4012abae
Loading
Loading
Loading
Loading
+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