blob: 104e7c30090c52e89e4e3af4b11851e20ceececf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import React from 'react';
import {Text, TouchableOpacity} from 'react-native';
import SaveIcon from '../../assets/icons/camera/save.svg';
import {styles} from './styles';
interface SaveButtonProps {
onPress: () => void;
}
/*
* Appears when a picture has been taken,
* On click, saves the captured image to "Recents" album on device gallery
*/
export const SaveButton: React.FC<SaveButtonProps> = ({onPress}) => (
<TouchableOpacity onPress={onPress} style={styles.saveButton}>
<SaveIcon width={40} height={40} />
<Text style={styles.saveButtonLabel}>Save</Text>
</TouchableOpacity>
);
export default SaveButton;
|