import { Image, ImageStyle, StyleProp } from "react-native"; import { ImageName } from "../App/common/constants/StringConstant"; export const AppImage = (imageCode?: string, style?: StyleProp) => { switch (imageCode) { case ImageName.SWW: return ( ); case ImageName.CROSS: return ( ); case ImageName.HELP: return ( ); case ImageName.QUOTE_APOLOGY_ICON: return ( ); default: return null; } };