diff --git a/source/src/components/Footer.tsx b/source/src/components/Footer.tsx
index be12154..ee80fdc 100644
--- a/source/src/components/Footer.tsx
+++ b/source/src/components/Footer.tsx
@@ -1,9 +1,7 @@
import styled from "styled-components"
-import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
-import { faGithub } from "@fortawesome/free-brands-svg-icons"
-
import theming from "../styles/theming"
+import GithubLinkIcon from "./GithubLinkIcon"
const StyledFooter = styled.footer`
display: flex;
@@ -40,24 +38,6 @@ const StyledFooterContainer = styled.div`
max-width: ${theming.size.screen_size2};
`
-const StyledGithubLink = styled.a`
- font-size: 2.5rem;
-
- color: ${(props) =>
- theming.theme(props.theme.currentTheme, {
- light: "lightgrey",
- dark: "grey",
- })};
-
- &:hover {
- color: ${(props) =>
- theming.theme(props.theme.currentTheme, {
- light: theming.light.color0,
- dark: theming.dark.color0,
- })};
- }
-`
-
const Footer = () => {
return (
@@ -66,12 +46,7 @@ const Footer = () => {
Created by developomp
-
-
-
+
)
diff --git a/source/src/components/GithubLinkIcon.tsx b/source/src/components/GithubLinkIcon.tsx
new file mode 100644
index 0000000..95c7772
--- /dev/null
+++ b/source/src/components/GithubLinkIcon.tsx
@@ -0,0 +1,42 @@
+import { ReactNode } from "react"
+import styled from "styled-components"
+
+import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
+import { faGithub } from "@fortawesome/free-brands-svg-icons"
+
+import theming from "../styles/theming"
+
+const StyledGithubLink = styled.a<{ size?: string }>`
+ font-size: ${(props) => props.size || "2.5rem"};
+
+ color: ${(props) =>
+ theming.theme(props.theme.currentTheme, {
+ light: "lightgrey",
+ dark: "grey",
+ })};
+
+ :hover {
+ color: ${(props) =>
+ theming.theme(props.theme.currentTheme, {
+ light: theming.light.color0,
+ dark: theming.dark.color0,
+ })};
+ }
+`
+
+interface GithubLinkIconProps {
+ link: string
+ size?: string
+ children?: ReactNode
+}
+
+const GithubLinkIcon = (props: GithubLinkIconProps) => {
+ return (
+
+
+ {props.children}
+
+ )
+}
+
+export default GithubLinkIcon