Integrating @tensorflow/tfjs-react-native for body segmentation

All the libraries requies for the body segmentation are installed. Here is my package.json file:
@mediapipe/selfie_segmentation”: “^0.1.1675465747”,
@react-native-async-storage/async-storage”: “^1.23.1”,
@tensorflow-models/body-segmentation”: “^1.0.2”,
@tensorflow/tfjs”: “^4.17.0”,
@tensorflow/tfjs-backend-cpu”: “^4.17.0”,
@tensorflow/tfjs-backend-webgl”: “^4.17.0”,
@tensorflow/tfjs-converter”: “^4.17.0”,
@tensorflow/tfjs-core”: “^4.17.0”,
@tensorflow/tfjs-react-native”: “^1.0.0”,
“expo”: “^50.0.0”,
“expo-camera”: “^14.1.2”,
“expo-gl”: “~13.6.0”,
“react”: “18.2.0”,
“react-native”: “0.73.6”,
“react-native-fs”: “^2.20.0”,
“seedrandom”: “^3.0.5”

but when i’m running the code i’m getting following error:
error: Error: Unable to resolve module ./LogBoxImages/close.png from /Users/apple/Documents/ApparelAugment/node_modules/react-native/Libraries/LogBox/UI/LogBoxNotification.js:

None of these files exist:

  • node_modules/react-native/Libraries/LogBox/UI/LogBoxImages/close.png(.android.js|.native.js|.js|.android.jsx|.native.jsx|.jsx|.android.json|.native.json|.json|.android.ts|.native.ts|.ts|.android.tsx|.native.tsx|.tsx)
  • node_modules/react-native/Libraries/LogBox/UI/LogBoxImages/close.png/index(.android.js|.native.js|.js|.android.jsx|.native.jsx|.jsx|.android.json|.native.json|.json|.android.ts|.native.ts|.ts|.android.tsx|.native.tsx|.tsx)
    105 | style={dismissStyles.press}>
    106 | <Image

107 | source={require(‘./LogBoxImages/close.png’)}
| ^
108 | style={dismissStyles.image}
109 | />
110 |

When i check the above mentioned file, all the required parameters are there.
Please help me to resolve this and give any suggestions to take body measurements.