Skip to content

Commit 97e1425

Browse files
committed
fix Nebula icon in footer + remove redundant icon color prop
1 parent b5fe187 commit 97e1425

File tree

1 file changed

+8
-15
lines changed

1 file changed

+8
-15
lines changed

src/components/Footer.js

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
FaYoutube,
1616
FaInstagram
1717
} from 'react-icons/fa6';
18-
import { IoStar } from 'react-icons/io5';
18+
import { IoStarSharp } from 'react-icons/io5';
1919

2020
import { cols } from '../styles/styles.module.css';
2121

@@ -86,35 +86,28 @@ const Footer = () => {
8686
<a
8787
href="https://www.youtube.com/c/TheCodingTrain/"
8888
aria-label="Youtube">
89-
<FaYoutube size={30} color="var(--text-color)" />
89+
<FaYoutube size={30} />
9090
<span>Youtube</span>
9191
</a>
9292
</li>
9393
<li>
9494
<a
9595
href="https://www.twitch.tv/codingtrainchoochoo"
9696
aria-label="Twitch">
97-
<FaTwitch size={30} color="var(--text-color)" />
97+
<FaTwitch size={30} />
9898
<span>Twitch</span>
9999
</a>
100100
</li>
101101

102102
<li>
103103
<a href="https://nebula.tv/codingtrain" aria-label="Nebula">
104-
{/* <Nebula width={30} /> */}
105-
<IoStar
106-
size={30}
107-
color="var(--text-color)"
108-
style={{
109-
rotate: '45deg'
110-
}}
111-
/>
104+
<IoStarSharp size={30} style={{ transform: 'scaleY(-1)' }} />
112105
<span>Nebula</span>
113106
</a>
114107
</li>
115108
<li>
116109
<a href="https://twitter.com/thecodingtrain" aria-label="Twitter">
117-
<FaTwitter size={30} color="var(--text-color)" />
110+
<FaTwitter size={30} />
118111
<span>Twitter</span>
119112
</a>
120113
</li>
@@ -123,19 +116,19 @@ const Footer = () => {
123116
<a
124117
href="https://www.instagram.com/the.coding.train/"
125118
aria-label="Instagram">
126-
<FaInstagram size={30} color="var(--text-color)" />
119+
<FaInstagram size={30} />
127120
<span>Instagram</span>
128121
</a>
129122
</li>
130123
<li>
131124
<a href="https://thecodingtrain.com/discord" aria-label="Discord">
132-
<FaDiscord size={30} color="var(--text-color)" />
125+
<FaDiscord size={30} />
133126
<span>Discord</span>
134127
</a>
135128
</li>
136129
<li>
137130
<a href="https://github.com/CodingTrain" aria-label="GitHub">
138-
<FaGithub size={30} color="var(--text-color)" />
131+
<FaGithub size={30} />
139132
<span>GitHub</span>
140133
</a>
141134
</li>

0 commit comments

Comments
 (0)