// Parleur logo mark — uses the real app icon PNG (no SVG approximations).
const LogoMark = ({ size = 28 }) => (
  <span
    className="logo-mark"
    style={{ width: size, height: size }}
    aria-hidden="true"
  >
    <img
      src="assets/parleur-icon.png"
      alt=""
      draggable="false"
      style={{ width: '100%', height: '100%', display: 'block', objectFit: 'cover' }}
    />
  </span>
);

window.LogoMark = LogoMark;
