export const SHINE_CONNECTIONS_LOGO_SRC = '/assets/SHiNE_connections_blue.svg?v=2026082601'; export function createShineConnectionsLogo({ className = '' } = {}) { const img = document.createElement('img'); img.src = SHINE_CONNECTIONS_LOGO_SRC; img.alt = ''; img.setAttribute('aria-hidden', 'true'); img.className = String(className || '').trim(); return img; }