import React from 'react'; import cn from 'classnames'; import { Icon, Tooltip } from 'UI'; import stl from './funnelMenuItem.module.css'; import { useTranslation } from 'react-i18next'; function FunnelMenuItem({ iconName = 'info', className, title, active = false, disabled = false, isPublic = false, onClick, }) { const { t } = useTranslation(); return (
{title}
); } export default FunnelMenuItem;