From 4b879088d012e5c1957d3870f620b805dda098a3 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Fri, 13 Sep 2024 19:14:11 +0200 Subject: [PATCH] feat(icons): add codingame and linkedin icons --- src/utils/icons.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/utils/icons.ts b/src/utils/icons.ts index 2664d29..13db8dc 100644 --- a/src/utils/icons.ts +++ b/src/utils/icons.ts @@ -48,6 +48,14 @@ export const ICONS: Record = { char: "󰊤 ", color: "#ffffff", }, + LinkedIn: { + char: " ", + color: "#0077b5", + }, + CodinGame: { + char: " ", + color: "#f1c40f", + }, }; export const DEFAULT_ICON = { char: "󰈚 ", color: "#f599ae" };