import { Popper, type PopperProps } from '../popper'; import { TooltipProps } from '@mui/material'; import { StyledMenuWrapper } from './styles'; export const Menu = (props: PopperProps & Omit) => { const { content, placement = 'bottom-start', children } = props; return content ? ( {content} } > {children} ) : null; }; export default Menu;