import React from 'react'; import {StyleProp, Text, TouchableOpacity, ViewStyle} from 'react-native'; import SaveIcon from '../../assets/icons/camera/save.svg'; import {styles} from './styles'; interface SaveButtonProps { onPress: () => void; style?: StyleProp; } /* * Appears when a picture has been taken, * On click, saves the captured image to "Recents" album on device gallery */ export const SaveButton: React.FC = ({onPress, style}) => ( Save ); export default SaveButton;