Skip to content

Commit

Permalink
[RNMobile] Correct ios back icon (#26690)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukewalczak authored Nov 9, 2020
1 parent b21a82d commit 08a4c56
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ import { View, TouchableWithoutFeedback, Text, Platform } from 'react-native';
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import { check, Icon, chevronLeft, arrowLeft, close } from '@wordpress/icons';
import {
check,
Icon,
chevronBackIOS,
arrowLeft,
close,
} from '@wordpress/icons';
import { usePreferredColorSchemeStyle } from '@wordpress/compose';

/**
Expand Down Expand Up @@ -51,8 +57,8 @@ function BottomSheetNavigationHeader( {
if ( isIOS ) {
backIcon = isFullscreen ? undefined : (
<Icon
icon={ chevronLeft }
size={ 40 }
icon={ chevronBackIOS }
size={ 21 }
style={ chevronLeftStyle }
/>
);
Expand Down

0 comments on commit 08a4c56

Please sign in to comment.