import React from 'react'; import { View, TouchableOpacity } from 'react-native'; import { Image } from 'expo-image'; import { X } from 'lucide-react-native'; interface RemovablePhotoTileProps { uri: string; onRemove: () => void; size: number; } export default function RemovablePhotoTile({ uri, onRemove, size }: RemovablePhotoTileProps) { return ( ); }