interface StarIconProps { filled: boolean; size: number; }; export default function StarIcon({ filled, size = 6 }: StarIconProps) { return <> {filled ? ( ) : ( )} }