diff --git a/src/icons/Github/GithubIcon.tsx b/src/icons/Github/GithubIcon.tsx
index e422f7970..e92dc5d04 100644
--- a/src/icons/Github/GithubIcon.tsx
+++ b/src/icons/Github/GithubIcon.tsx
@@ -2,6 +2,9 @@ interface GithubIconProps {
height?: string | number;
width?: string | number;
fill?: string;
+ orgIcon?: boolean;
+ bgFill?: string;
+ catFill?: string;
className?: string;
}
@@ -9,6 +12,9 @@ export default function GithubIcon({
height = '1.45rem',
width = '1.45rem',
fill = 'currentColor',
+ orgIcon = false,
+ bgFill = '#fff',
+ catFill = '#000',
className
}: GithubIconProps) {
return (
@@ -17,8 +23,32 @@ export default function GithubIcon({
width={width}
className={className}
xmlns="http://www.w3.org/2000/svg"
- viewBox="60 60 280 280"
+ viewBox={orgIcon ? "0 0 512 512" : "60 60 280 280"}
>
+ {orgIcon ? (
+
+
+
+
+
+
+
+ ) : (
+ )}
);
}