/* global React */ function CustomE({ fillStyle, size = 22 }) { const width = Math.round(size * 0.64); const longBar = Math.round(width * 0.78); const shortBar = Math.round(width * 0.52); const barH = 2; return ( ); } function CustomA({ fontSize, stroke, id = "aGrad" }) { const width = Math.round(fontSize * 0.72); const height = Math.round(fontSize * 0.82); const sw = Math.max(1.8, Math.round(stroke * 10) / 10); return ( ); } function WordmarkLine() { const titleSize = 22; const stroke = Math.max(2, Math.round(titleSize * 0.07)); const gap = 12; const wordGap = 26; const mixedColor = "linear-gradient(90deg, #F3F5F7 0%, #F3F5F7 62%, #19B5E8 100%)"; const baseStyle = { fontFamily: "'Inter Tight', 'Geist', system-ui, sans-serif", fontSize: `${titleSize}px`, fontWeight: 500, lineHeight: 1, display: "inline-flex", alignItems: "center", }; const glyphBox = { height: `${titleSize}px`, minWidth: "14px", display: "inline-flex", alignItems: "center", justifyContent: "center", }; const gradientText = { backgroundImage: mixedColor, WebkitBackgroundClip: "text", backgroundClip: "text", color: "transparent", }; const gradientFill = { backgroundImage: mixedColor, }; return (