[FIX] Change some icons (#2419)

This commit is contained in:
Diego Mello 2020-08-21 15:11:10 -03:00 committed by GitHub
parent b06bf7fcb5
commit ccb36f1f56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -129,7 +129,7 @@ class MessageBox extends Component {
this.options = [ this.options = [
{ {
title: I18n.t('Take_a_photo'), title: I18n.t('Take_a_photo'),
icon: 'image', icon: 'camera-photo',
onPress: this.takePhoto onPress: this.takePhoto
}, },
{ {
@ -139,7 +139,7 @@ class MessageBox extends Component {
}, },
{ {
title: I18n.t('Choose_from_library'), title: I18n.t('Choose_from_library'),
icon: 'share', icon: 'image',
onPress: this.chooseFromLibrary onPress: this.chooseFromLibrary
}, },
{ {

View File

@ -169,7 +169,7 @@ class ShareListView extends React.Component {
? null ? null
: ( : (
<CustomHeaderButtons> <CustomHeaderButtons>
<Item title='search' iconName='magnifier' onPress={this.initSearch} /> <Item title='search' iconName='search' onPress={this.initSearch} />
</CustomHeaderButtons> </CustomHeaderButtons>
) )
) )