import { useAppState } from '@/state/AppState'; import clsx from 'clsx/lite'; import { LuCog } from 'react-icons/lu'; import InsightsIndicatorDot from './insights/InsightsIndicatorDot'; export default function AdminAppInfoIcon({ size = 'large', className, }: { size?: 'small' | 'large' className?: string }) { const { insightIndicatorStatus } = useAppState(); return ( {insightIndicatorStatus && } ); }