interface CustomStarIconProps { className?: string; fill?: string; width?: number; height?: number; } export const CustomStarIcon = ({ className, fill = "#888888", width = 24, height = 24, ...props }: CustomStarIconProps) => ( )