Skip to content

Commit f6d3fc4

Browse files
authored
fix: icon open PR (#114)
fix: icon open open PR
1 parent 7f7dd40 commit f6d3fc4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/RepositoryContributionsCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Image from "next/image";
33
import Link from "next/link";
44
import { FaCodeMerge } from "react-icons/fa6";
55
import { IoIosCloseCircleOutline } from "react-icons/io";
6-
import { GoIssueOpened } from "react-icons/go";
6+
import { GoGitPullRequest } from "react-icons/go";
77

88
export const RepositoryContributionsCard = ({
99
repository,
@@ -80,7 +80,7 @@ export const RepositoryContributionsCard = ({
8080
) : state === "CLOSED" ? (
8181
<IoIosCloseCircleOutline size={18} />
8282
) : (
83-
<GoIssueOpened size={18} />
83+
<GoGitPullRequest size={18} />
8484
)}
8585
</span>
8686
</div>

0 commit comments

Comments
 (0)