/** * BoostMedia AI Content Generator Admin - PingDot Component * * Pulsing indicator dot for onboarding attention cues. * * @package BoostMedia_AI * @license GPL-2.0-or-later */ interface PingDotProps { visible: boolean size?: 'sm' | 'md' className?: string } export function PingDot({ visible, size = 'sm', className = '' }: PingDotProps) { if (!visible) return null const sizeClasses = size === 'sm' ? 'w-2 h-2' : 'w-2.5 h-2.5' return ( ) }