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