We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f7dd40 commit f6d3fc4Copy full SHA for f6d3fc4
src/components/RepositoryContributionsCard.tsx
@@ -3,7 +3,7 @@ import Image from "next/image";
3
import Link from "next/link";
4
import { FaCodeMerge } from "react-icons/fa6";
5
import { IoIosCloseCircleOutline } from "react-icons/io";
6
-import { GoIssueOpened } from "react-icons/go";
+import { GoGitPullRequest } from "react-icons/go";
7
8
export const RepositoryContributionsCard = ({
9
repository,
@@ -80,7 +80,7 @@ export const RepositoryContributionsCard = ({
80
) : state === "CLOSED" ? (
81
<IoIosCloseCircleOutline size={18} />
82
) : (
83
- <GoIssueOpened size={18} />
+ <GoGitPullRequest size={18} />
84
)}
85
</span>
86
</div>
0 commit comments