const EyeCloseIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      width="19"
      height="9"
      viewBox="0 0 19 9"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path d="M1 1C3.66667 7.30171 14.5 8.0219 18 1" stroke="currentColor" />
      <path d="M1.5 6L3 4M6 8L7 6" stroke="currentColor" />
      <path d="M17 6L15.5 4M12.5 8L11.5 6" stroke="currentColor" />
    </svg>
  );
};

export { EyeCloseIcon };
