import React from 'react'; import Svg, { Path } from 'react-native-svg'; export interface PersonIconProps { size?: number; color?: string; } export const PersonIcon: React.FC = ({ size = 16, color = 'currentColor', }) => { return ( ); };