-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitee-icon.tsx
executable file
·17 lines (16 loc) · 1.1 KB
/
gitee-icon.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import type { SVGProps } from "react"
export function GiteeIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
{...props}
>
<circle cx="12" cy="12" r="12" fill="#C71D23" />
<path d="M18.0744 5.33333L9.77776 5.3337C7.32317 5.3337 5.33333 7.32354 5.33333 9.77812V18.0741C5.33333 18.4014 5.59865 18.6667 5.92592 18.6667H14.6668C16.8759 18.6667 18.6667 16.8759 18.6667 14.6668V11.2595C18.6667 10.9322 18.4014 10.6669 18.0741 10.6669H11.2593C10.9321 10.667 10.6668 10.9323 10.6666 11.2595L10.6662 12.7409C10.6659 13.0518 10.9053 13.3069 11.2098 13.3317L11.2586 13.3335L15.4074 13.3334C15.7183 13.3334 15.9733 13.5729 15.9981 13.8774L16 13.926V14.2223C16 15.2041 15.2041 16.0001 14.2222 16.0001H8.59221C8.26498 16.0001 7.9997 15.7348 7.99967 15.4076L7.99952 9.77806C7.99945 8.82077 8.75606 8.04019 9.70391 8.00173L9.77724 8.0003H18.0724C18.3996 7.99993 18.6648 7.73484 18.6654 7.4077L18.6663 5.92629C18.6669 5.59901 18.4017 5.33354 18.0744 5.33333Z" fill="white" />
</svg>
)
}