type UVLogoEyeSpriteProps = {
  width?: number;
  height?: number;
  fill?: string;
};

function UVLogoEyeSprite({
  width = 124,
  height = 119,
  fill,
}: UVLogoEyeSpriteProps) {
  const fillToUse = fill ? fill : "text-black dark:text-white fill-current";

  return (
    <svg
      aria-label="User viewing logo, featuring an eye, representing a focus on user-centered research and activities."
      className={fillToUse}
      fill={fill}
      height={height}
      role="img"
      viewBox="0 0 325 325"
      width={width}
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        d="M141.267 1.467C105.8 6 73.533 22 47.667 48c-23.2 23.2-37.334 49.2-44.8 82.667-1.734 7.2-2.267 16.266-2.267 32 0 23.466 1.333 32.533 7.867 52.266 4.266 12.934 13.066 30.267 21.333 42 8.267 11.6 26.667 30 38.267 38.267 56.133 39.733 132.4 39.733 188.533 0 11.6-8.267 30-26.667 38.267-38.267 8.266-11.733 17.066-29.066 21.333-42 6.533-19.733 7.867-28.8 7.867-52.266 0-29.067-4.4-48.667-16.134-72-11.466-23.067-31.466-46.4-51.333-60.534-32.8-23.2-75.733-33.866-115.333-28.666zm56.4 27.066c32.8 9.6 62.666 31.6 80.4 59.334 10.8 16.933 19.466 41.066 21.2 59.333l.8 9.467-9.867-9.2c-30.533-28.534-69.467-49.734-102.533-56-49.6-9.467-105.6 10.933-152.8 55.6-9.067 8.533-12.534 12.8-12.534 15.066 0 9.067 39.6 40.934 69.734 56 65.6 33.067 130.8 19.867 197.466-40l10.534-9.466-.8 10c-1.6 18.533-10.134 42.933-21.2 60.133-17.734 27.733-47.2 49.467-80.4 59.467-11.2 3.333-13.6 3.6-37.334 3.6-23.866 0-26-.267-37.333-3.6-48.667-14.934-82.933-49.2-97.6-97.6-3.333-11.2-3.6-13.6-3.6-37.334 0-23.866.267-26 3.6-37.333 16-52.4 54.267-88 107.733-100 6.134-1.333 14.8-1.867 30.534-1.467 19.066.4 23.6.934 34 4zM179.8 108c10 3.067 14.267 5.733 22.933 14.267 22 21.6 22.4 56.933.8 79.733-23.066 24.4-60.133 23.867-83.6-1.2-11.333-12.267-14.133-19.867-14.266-38.8 0-14 .266-15.067 4.533-24 7.467-15.2 22.667-27.733 37.867-31.333 8.4-2 23.066-1.467 31.733 1.333z"
        fill={fill}
      ></path>
      <path
        d="M151.667 123.2c-12 3.2-21.867 11.733-27.067 23.333-3.2 7.2-3.867 22.134-1.067 29.867 2.667 7.6 10.934 17.2 18.534 21.333 23.733 12.934 51.466 1.2 59.466-25.066.667-2.534.267-2.667-4.4-2.267-21.2 2-34.133-21.467-21.6-39.2l4-5.733-6.8-2.134c-8.133-2.4-12.933-2.4-21.066-.133z"
        fill={fill}
      ></path>
    </svg>
  );
}

export default UVLogoEyeSprite;
