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 }) => { const iosIconSize = size - 3; return Platform.OS === 'ios' ? ( ) : ( ); }; const styles = StyleSheet.create({ wrapper: { alignItems: 'center', justifyContent: 'center', }, icon: { resizeMode: 'contain', }, }); export default AppbarBackIcon; // @component-docs ignore-next-line export { AppbarBackIcon };