import Svg, { Path } from 'react-native-svg'; interface IconProps { size: number; color: string; } interface StarIconProps { size: number; type: 'full' | 'empty'; } const EMPTY_COLOR = '#C6C6C6'; const FILLED_COLOR = '#E4941B'; const Star = ({ size, color }: IconProps) => ( ); export function StarIcon({ type, size }: StarIconProps) { return ; } export default StarIcon;