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 420c7bf commit 6f6a58aCopy full SHA for 6f6a58a
src/components/StoryIcon.js
@@ -9,14 +9,17 @@ import {
9
DiRust,
10
} from 'react-icons/di';
11
import { GoBeaker } from 'react-icons/go';
12
-import { TbMathFunction, TbAtom } from 'react-icons/tb';
+import { TbMathFunction, TbAtom, TbBrandGolang } from 'react-icons/tb';
13
import { SiZig } from 'react-icons/si';
14
15
function StoryIcon({ language, size = 16, className = 'text-zinc-50' }) {
16
switch (language) {
17
case 'css':
18
return <DiCss3Full size={size} className={className} />;
19
break;
20
+ case 'golang':
21
+ return <TbBrandGolang size={size} className={className} />;
22
+ break;
23
case 'java':
24
return <DiJava size={size} className={className} />;
25
0 commit comments