import React from 'react'; import Svg, { Path } from 'react-native-svg'; import { ViewStyle } from 'react-native'; interface IconProps { size?: number; color?: string; style?: ViewStyle; } export const HomeIcon: React.FC = ({ size = 24, color = '#666', style }) => { return ( ); }; export default HomeIcon;