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