import * as React from 'react'; import { Platform, I18nManager, View, Image, StyleSheet } from 'react-native'; import MaterialCommunityIcon from '../MaterialCommunityIcon'; const AppbarBackIcon = ({ size, color }: { size: number; color: string }) => Platform.OS === 'ios' ? ( ) : ( ); const styles = StyleSheet.create({ wrapper: { alignItems: 'center', justifyContent: 'center', }, icon: { height: 21, width: 21, resizeMode: 'contain', }, }); export default AppbarBackIcon;