/* eslint-disable */
/* DROP wordmark — inline SVG for crisp, recolorable rendering */
function DropLogo({ size = 32, color = "currentColor" }) {
  return (
    <svg
      viewBox="0 0 600 200"
      style={{ height: size, width: "auto", display: "block", color }}
      aria-label="DROP"
    >
      <text
        x="300" y="148" textAnchor="middle"
        fontFamily="'Cormorant Garamond', 'Didot', Georgia, serif"
        fontSize="170" fontWeight="400"
        letterSpacing="14"
        fill="currentColor"
      >DROP</text>
    </svg>
  );
}
window.DropLogo = DropLogo;
