Skip to content

Commit

Permalink
feat(icons): Go
Browse files Browse the repository at this point in the history
  • Loading branch information
aboqasem committed Mar 3, 2024
1 parent a1ba47e commit dc1ddaf
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
22 changes: 22 additions & 0 deletions lib/icons/fa6/FaGolang.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import type { Icon } from "..";

const FaGolang: Icon = (props) => {
return (
<svg
stroke="currentColor"
fill="currentColor"
stroke-width="0"
viewBox="0 0 640 512"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<title>{props.title}</title>
<path
d="M400.1 194.8c-10.9 2.8-19.9 4.3-29.1 7.6-7.3 1.9-14.7 3.9-23.2 6.1l-.6.1c-4.2 1.2-4.6 1.3-8.5-3.2-4.7-5.3-8.1-8.7-14.6-11.9-19.7-9.6-38.7-6.8-56.4 4.7-21.2 13.7-32.1 34-31.8 59.2.3 25 17.4 45.5 41.2 48.9 22 2.8 39.8-4.6 53.8-20.5 2.1-2.6 4-5.3 6.1-8.3.8-1 1.5-2.1 2.3-3.3h-60.1c-6.5 0-8.1-4-5.9-9.3 4-9.7 11.5-25.9 15.9-34 .9-1.8 3.1-5.8 6.9-5.8h101.1c4.5-13.4 11.8-26.9 21.6-39.7 22.7-29.9 49.3-45.5 87.2-52 31.8-5.6 61.7-2.5 88.9 15.9 24.6 16.8 39.8 39.6 43.9 69.5 5.3 42.1-6.9 76.3-36.7 105.6-19.7 20.9-44.9 34-73.9 39.9-5.6 1-11.1 1.5-16.5 2-2.9.2-5.7.5-8.5.8-28.3-.6-54.2-8.7-76-27.4-15.3-13.3-25.9-29.6-31.1-48.5-3.7 7.3-8 14.4-14 21.1-21.6 29.6-50.9 48-87.9 52.9-30.6 4.1-58.9-1.8-83.9-20.5-23-17.5-36.1-40.5-39.5-69.2-4.1-34 5.9-65.4 26.4-91.3 22.2-29 51.5-47.4 87.3-53.9 29.3-6.2 57.3-1.9 82.6 15.3 16.5 10.9 28.3 25.8 36.1 43.9 1.9 2.8.6 4.4-3.1 5.3m-351.8 5.6c-1.25 0-1.56-.6-.94-1.6l6.55-8.4c.62-.9 2.18-1.5 3.43-1.5H168.6c1.2 0 1.5.9.9 1.8l-5.3 8.1c-.6 1-2.2 1.9-3.1 1.9zM1.246 229.1c-1.246 0-1.558-.7-.934-1.6l6.543-8.4c.624-.9 2.182-1.6 3.425-1.6H152.4c1.2 0 1.8 1 1.5 1.9l-2.5 7.5c-.3 1.2-1.5 1.9-2.8 1.9zm74.474 26.8c-.62.9-.31 1.8.93 1.8l67.95.3c.9 0 2.2-.9 2.2-2.1l.6-7.5c0-1.3-.6-2.2-1.9-2.2H83.2c-1.25 0-2.49.9-3.12 1.9zm501.48-18c-.2-2.6-.3-4.8-.7-7-5.6-30.8-34-48.3-63.6-41.4-29 6.5-47.7 24.9-54.5 54.2-5.6 24.3 6.2 48.9 28.6 58.9 17.2 7.5 34.3 6.6 50.8-1.9 24.6-13.6 38-32.7 39.6-59.5-.1-1.2-.1-2.3-.2-3.3"
stroke="none"
/>
</svg>
);
};

export default FaGolang;
2 changes: 2 additions & 0 deletions scripts/gen-icons/icons.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { BsChevronDown } from "react-icons/bs";
import { DiScrum } from "react-icons/di";
import { FaJava, FaLinkedinIn } from "react-icons/fa";
import { FaGolang } from "react-icons/fa6";
import { FiSettings } from "react-icons/fi";
import { MdHttp } from "react-icons/md";
import {
Expand Down Expand Up @@ -86,6 +87,7 @@ export const icons = {
SiSpringboot,
],
fa: [FaJava, FaLinkedinIn],
fa6: [FaGolang],
md: [MdHttp],
fi: [FiSettings],
di: [DiScrum],
Expand Down
5 changes: 5 additions & 0 deletions src/components/stages/DropsStage/icons.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { Icon } from "@lib/icons";
import DiScrum from "@lib/icons/di/DiScrum";
import FaJava from "@lib/icons/fa/FaJava";
import FaGolang from "@lib/icons/fa6/FaGolang";
import MdHttp from "@lib/icons/md/MdHttp";
import SiArduino from "@lib/icons/si/SiArduino";
import SiC from "@lib/icons/si/SiC";
Expand Down Expand Up @@ -56,6 +57,10 @@ export const icons: { Icon: Icon; desc: string }[] = [
Icon: FaJava,
desc: "Java",
},
{
Icon: FaGolang,
desc: "Go",
},
{
Icon: SiCplusplus,
desc: "C++",
Expand Down

0 comments on commit dc1ddaf

Please sign in to comment.