/**
* =========================================================================
* PLATEFORME ECO-PANNEAU.FR - VERSION 1.0.0
* Socle UI (2/4) - Identité visuelle, Icônes et QR Code
* =========================================================================
*/
// =========================================================================
// 1. LOGO SVG ET TEXT LOGO
// =========================================================================
window.LogoSVG = ({ size = 32, className = '' }) => (
);
window.TextLogo = ({ className = "", colorEco = "text-slate-800" }) => (
eco-panneau.fr
);
window.SiteLogo = ({ size = 32, className = "" }) => {
const isRiverainOrScan = typeof window !== 'undefined' && (new URLSearchParams(window.location.search).has('scan') || new URLSearchParams(window.location.search).has('thread'));
const Wrapper = isRiverainOrScan ? 'div' : 'a';
const props = isRiverainOrScan ? {} : { href: 'https://eco-panneau.fr', title: "Retour à l'accueil" };
const ecoColor = className.includes('text-white') ? 'text-white' : 'text-slate-800';
return (