Skip to content

Commit 257656b

Browse files
committed
revert icons to follow-up pinning rn-vector-icons
1 parent 47bcb1f commit 257656b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/components/nav-buttons/favorite.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class FavoriteButton extends React.PureComponent<Props> {
1616
// (ios|md)-heart(-outline)
1717
const iconPlatform = Platform.OS === 'ios' ? 'ios' : 'md'
1818
const icon =
19-
`${iconPlatform}-heart` + (this.props.favorited ? '' : '-empty')
19+
`${iconPlatform}-heart` + (this.props.favorited ? '' : '-outline')
2020

2121
return (
2222
<Touchable

source/components/nav-buttons/share.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ type Props = {
1010
onPress: () => any,
1111
}
1212

13-
const iconName = Platform.OS === 'ios' ? 'ios-share' : 'md-share'
13+
const iconName = Platform.OS === 'ios' ? 'ios-share-outline' : 'md-share'
1414

1515
export class ShareButton extends React.PureComponent<Props> {
1616
render() {

0 commit comments

Comments
 (0)