File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
source/components/nav-buttons Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
1515export class ShareButton extends React . PureComponent < Props > {
1616 render ( ) {
You can’t perform that action at this time.
0 commit comments