import React from 'react'; import Svg, { Path } from 'react-native-svg'; import type { TabIconProps } from '@packages/shared'; const MeIcon: React.FC = ({ focused, size, color }) => { if (focused) { // Selected state SVG (filled user) return ( ); } else { // Unselected state SVG (outlined user) return ( ); } }; export default MeIcon;