import type { ReactNode } from 'react'; import { cn } from '@/lib/utils'; interface AnalyticsIconInfoProps { children: ReactNode; content: ReactNode; widgetLabel: string; className?: string; } export function AnalyticsIconInfo({ children, widgetLabel, className }: AnalyticsIconInfoProps) { return ( {children} ); }