import React from "react"; import { View, StyleSheet } from "react-native"; import { AtomicAvatar } from "@umituz/react-native-design-system/atoms"; interface EditProfileAvatarProps { photoURL: string | null; displayName: string; onPress?: () => void; } export const EditProfileAvatar: React.FC = ({ photoURL, displayName, }) => { return ( ); }; const styles = StyleSheet.create({ avatarContainer: { alignItems: "center", marginBottom: 24, }, });