pankod/refine

View on GitHub
packages/devtools-ui/src/components/icons/github.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from "react";

export const GithubIcon = (props: React.SVGProps<SVGSVGElement>) => (
  <svg
    xmlns="http://www.w3.org/2000/svg"
    width={32}
    height={32}
    viewBox="0 0 32 32"
    fill="none"
    {...props}
  >
    <path
      fill="currentColor"
      d="M0 16.406C0 7.346 7.164 0 16 0s16 7.346 16 16.406c0 7.245-4.578 13.393-10.932 15.564-.81.16-1.1-.35-1.1-.788 0-.18.003-.493.006-.913.005-.846.013-2.122.013-3.589 0-1.53-.51-2.529-1.086-3.037 3.561-.407 7.305-1.796 7.305-8.096 0-1.79-.62-3.254-1.646-4.403.167-.413.716-2.081-.156-4.341 0 0-1.34-.44-4.395 1.681A14.976 14.976 0 0 0 16 7.933a14.928 14.928 0 0 0-4.006.551c-3.057-2.122-4.4-1.681-4.4-1.681-.867 2.26-.321 3.928-.154 4.34-1.023 1.15-1.648 2.614-1.648 4.404 0 6.284 3.735 7.691 7.288 8.107-.455.41-.871 1.136-1.014 2.195-.912.418-3.227 1.144-4.656-1.364 0 0-.847-1.573-2.453-1.69 0 0-1.56-.021-.109.998 0 0 1.047.505 1.776 2.401 0 0 .938 2.926 5.391 1.934.003.796.01 1.567.015 2.149.004.418.006.741.006.905 0 .435-.294.943-1.094.79C4.584 29.806 0 23.654 0 16.407Z"
    />
  </svg>
);