import React from 'react'; import { StyleSheet, View } from 'react-native'; import { themes } from '../../constants/colors'; import { CustomIcon } from '../../lib/Icons'; import { withTheme } from '../../theme'; import { ICON_SIZE } from './constants'; interface IListIcon { theme: string; name: string; color: string; style: object; testID: string; } const styles = StyleSheet.create({ icon: { alignItems: 'center', justifyContent: 'center' } }); const ListIcon = React.memo(({ theme, name, color, style, testID }: IListIcon) => ( )); ListIcon.displayName = 'List.Icon'; export default withTheme(ListIcon);