// BrandMark — the Fellow Assembly Line logo: Fellow box on a conveyor belt.
// Pure renderer; inherits color from the parent (`currentColor`). Parents that
// want the dark chip wrap it themselves (bg-neutral-900 rounded-lg text-white).
window.BrandMark = function BrandMark({ size = 22 }) {
  return (
    <svg width={size} height={size} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.6" strokeLinecap="round" strokeLinejoin="round" aria-hidden>
      <rect x="6.5" y="3" width="11" height="12" rx="1.4" />
      <g transform="translate(8.66 3.43) scale(0.048)" fill="currentColor" stroke="none">
        <path d="M138.12 0V55.41L0 122.09V66.68L138.12 0Z" />
        <path d="M138.12 80.3604V135.8L58.36 174.28V231.41L0 203.25V147.07L138.12 80.3604Z" />
      </g>
      <line x1="2" y1="18.5" x2="22" y2="18.5" />
      <circle cx="6" cy="21" r="1.4" />
      <circle cx="12" cy="21" r="1.4" />
      <circle cx="18" cy="21" r="1.4" />
    </svg>
  );
};
