import { PropsWithChildren } from 'react'; import clsx from 'clsx'; import { Briefcase } from 'lucide-react'; import './BEFeatureIndicator.css'; import { FeatureId } from '@/react/portainer/feature-flags/enums'; import { Icon } from '@@/Icon'; import { getFeatureDetails } from './utils'; export interface Props { featureId?: FeatureId; showIcon?: boolean; className?: string; } export function BEFeatureIndicator({ featureId, children, showIcon = true, className = '', }: PropsWithChildren) { const { url, limitedToBE } = getFeatureDetails(featureId); if (!limitedToBE) { return null; } return ( {children} {showIcon && } Business Feature ); }