import type { ImageStyle, StyleProp } from 'react-native'; import { ICON_ASSETS } from '../../assets'; import { DefaultImage } from './DefaultImage'; export type DefaultIconImageProps = { url?: string | undefined; localIcon?: number; size: number; borderRadius?: number; style?: StyleProp; defaultStyle?: StyleProp; cache?: 'default' | 'reload' | 'force-cache' | 'only-if-cached' | undefined; }; export function DefaultIconImage(props: DefaultIconImageProps) { const { url, size, borderRadius, style, defaultStyle, localIcon, cache } = props; return ( ); }