'Material UI MenuItem children limitations while using in a dropdown for filters

Is there anyway that i can pass an HTML tag inside a MenuItem Like following

<MenuItem
  key={filter.id}
  value={filter.id}
>
   <Tooltip title= "text to display">
      {filter.label || filter.name}
      <infoIcon/>
   </Tooltip>
</MenuItem>

for me when I open dropdown it is say [object object] for all items



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source