GiteaIcon.tsx raw

   1  export default function GiteaIcon({ className }: { className?: string }) {
   2    return (
   3      <svg
   4        className={className}
   5        viewBox="0 0 640 640"
   6        fill="currentColor"
   7        xmlns="http://www.w3.org/2000/svg"
   8      >
   9        <path d="M395.9 484.2l-126.9-61c-12.5-6-17.9-21.2-11.8-33.8l61-126.9c6-12.5 21.2-17.9 33.8-11.8 17.2 8.3 27.1 13 27.1 13l-33.1 68.8c-7.5 15.6 9.4 28.3 23.6 21l68.8-33.1s4.8 9.9 13 27.1c6.1 12.6.7 27.8-11.8 33.8l-43.7 21" />
  10        <path d="M320 59.5c-144 0-261 116.8-261 261 0 114.4 93 207.1 207.8 207.1h53.2c114.4 0 207.1-92.7 207.1-207.1 0-144.2-117-261-207.1-261zm143.6 293.8c-1.9 52.5-52.6 94.4-94.4 94.4H269c-52.5 0-94.4-42.3-94.4-94.4s42.3-94.4 94.4-94.4c25.6 0 48.8 10.2 65.8 26.7 4.3 4.2 11.3 4.1 15.5-.2 4.2-4.3 4.1-11.3-.2-15.5-21.2-20.6-49.9-33.2-81.1-33.2-64.5 0-116.6 52-116.6 116.6 0 64.5 52 116.6 116.6 116.6h100.3c64.5 0 116.6-52 116.6-116.6 0-3.3-.1-6.6-.4-9.8l-25.5 9.8z" />
  11      </svg>
  12    )
  13  }
  14