import { ReactNode } from 'react'; import { WithChildren } from '@/hooks/Mapper/types/common.ts'; import { WdTooltipWrapper } from '@/hooks/Mapper/components/ui-kit/WdTooltipWrapper'; import { TooltipPosition } from '@/hooks/Mapper/components/ui-kit/WdTooltip'; import clsx from 'clsx'; type MenuItemWithInfoProps = { infoTitle: ReactNode; infoClass?: string; tooltipWrapperClassName?: string; } & WithChildren; export const MenuItemWithInfo = ({ children, infoClass, infoTitle, tooltipWrapperClassName, }: MenuItemWithInfoProps) => { return (