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