import { HelpCircle } from 'lucide-react'; import clsx from 'clsx'; import { FeatureId } from '@/react/portainer/feature-flags/enums'; import { TooltipWithChildren } from '@@/Tip/TooltipWithChildren'; import { getFeatureDetails } from '@@/BEFeatureIndicator/utils'; interface Props { tooltipId: string; featureId?: FeatureId; } export function LimitedToBeIndicator({ featureId, tooltipId }: Props) { const { url } = getFeatureDetails(featureId); return (
BE Feature
); }