import React from 'react'; import { View } from 'react-native'; import Svg, { Path } from 'react-native-svg'; interface ProfileIconProps { size?: number; color?: string; } const ProfileIcon: React.FC = ({ size = 24, color = '#FFFFFF' }) => { return ( ); }; export default ProfileIcon;