Fixed:#52853 Lacking 'color' attribute in IconDescriptor Metadata (#52902)
Fixes #52853
Lacking 'color' attribute in IconDescriptor Metadata
```diff
export type IconDescriptor = {
url: string | URL
type?: string
sizes?: string
+ color?: string // added the color attribute
/** defaults to rel="icon" unless superseded by Icons map */
rel?: string
media?: string
/**
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/fetchPriority
*/
fetchPriority?: 'high' | 'low' | 'auto'
}
```
https://github.com/vercel/next.js/blob/v13.4.11-canary.0/packages/next/src/lib/metadata/types/metadata-types.ts#L99