const WineGlassIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      width="16"
      height="20"
      viewBox="0 0 16 20"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        d="M2.13317 0L1.01052 7.85858C0.708488 9.9728 1.53231 11.7891 2.89117 13.0465C3.99601 14.0688 5.45948 14.7319 7.0005 14.9343V18H2.00047V20H14.0005V18H9.0005V14.9343C10.5415 14.7319 12.0049 14.0688 13.1098 13.0465C14.4686 11.7891 15.2924 9.9728 14.9904 7.85858L13.8678 0H2.13317ZM2.99042 8.1414L3.86776 2H12.1332L13.0105 8.1414C13.2085 9.5272 12.6892 10.7109 11.7514 11.5785C10.7968 12.4618 9.4178 13 8.0005 13C6.5831 13 5.20412 12.4618 4.24948 11.5785C3.31177 10.7109 2.79245 9.5272 2.99042 8.1414Z"
        fill="currentColor"
      />
    </svg>
  );
};

export { WineGlassIcon };
