const CheckGreenIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      width="80"
      height="80"
      viewBox="0 0 80 80"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <rect width="80" height="80" rx="40" fill="#FFF8ED" />
      <path
        d="M40 13.4375C34.7464 13.4375 29.6109 14.9954 25.2427 17.9141C20.8745 20.8328 17.4699 24.9813 15.4595 29.835C13.449 34.6886 12.923 40.0295 13.9479 45.1821C14.9728 50.3347 17.5027 55.0677 21.2175 58.7825C24.9323 62.4974 29.6653 65.0272 34.8179 66.0521C39.9705 67.077 45.3114 66.551 50.165 64.5406C55.0187 62.5301 59.1672 59.1255 62.0859 54.7573C65.0046 50.3892 66.5625 45.2536 66.5625 40C66.5625 32.9552 63.764 26.1989 58.7825 21.2175C53.8011 16.236 47.0448 13.4375 40 13.4375Z"
        fill="url(#paint0_linear_800_21306)"
      />
      <path
        d="M55.1556 35.6019L39.1822 52.3706C38.7472 52.8274 38.2244 53.1916 37.6453 53.4416C37.0662 53.6915 36.4426 53.8221 35.8118 53.8253H35.7915C35.1645 53.8253 34.5437 53.6994 33.9662 53.4552C33.3886 53.2109 32.8659 52.8533 32.429 52.4034L23.9556 43.6737C23.4948 43.2396 23.1267 42.7166 22.8735 42.1363C22.6204 41.5561 22.4874 40.9305 22.4826 40.2974C22.4778 39.6644 22.6012 39.0369 22.8456 38.4528C23.0899 37.8688 23.45 37.3402 23.9042 36.8992C24.3584 36.4581 24.8972 36.1136 25.4881 35.8865C26.0791 35.6593 26.7099 35.5542 27.3426 35.5775C27.9753 35.6009 28.5967 35.7521 29.1693 36.0221C29.7419 36.2922 30.2539 36.6754 30.6744 37.1487L35.7525 42.3815L48.3603 29.1409C48.7845 28.6947 49.2925 28.3365 49.8552 28.0866C50.4179 27.8367 51.0242 27.7001 51.6397 27.6846C52.2552 27.6691 52.8677 27.7749 53.4423 27.9961C54.0168 28.2173 54.5422 28.5495 54.9884 28.9737C55.4346 29.398 55.7929 29.9059 56.0427 30.4686C56.2926 31.0313 56.4292 31.6377 56.4447 32.2532C56.4603 32.8686 56.3544 33.4812 56.1332 34.0557C55.912 34.6303 55.5798 35.1557 55.1556 35.6019Z"
        fill="url(#paint1_linear_800_21306)"
      />
      <defs>
        <linearGradient
          id="paint0_linear_800_21306"
          x1="66.2857"
          y1="63.4286"
          x2="21.2141"
          y2="21.2141"
          gradientUnits="userSpaceOnUse"
        >
          <stop stopColor="#C4893B" />
          <stop offset="0.52" stopColor="#FFB758" />
          <stop offset="1" stopColor="#FDE2A2" />
        </linearGradient>
        <linearGradient
          id="paint1_linear_800_21306"
          x1="50.8574"
          y1="49.7144"
          x2="32.0619"
          y2="29.0425"
          gradientUnits="userSpaceOnUse"
        >
          <stop stopColor="#FECC7C" />
          <stop offset="0.57" stopColor="white" />
          <stop offset="1" stopColor="white" />
        </linearGradient>
      </defs>
    </svg>
  );
};

export { CheckGreenIcon };
