From 4bb10800df8a636295eaeecea2b63b57a93d4781 Mon Sep 17 00:00:00 2001 From: nammahari Date: Thu, 15 May 2025 23:37:06 +0530 Subject: [PATCH] feat : Add Matrix SVG icons for light and dark themes --- src/data/svgs.ts | 15 ++++++++++++--- static/library/matrix-dark.svg | 1 + static/library/matrix-light.svg | 1 + 3 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 static/library/matrix-dark.svg create mode 100644 static/library/matrix-light.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 0efb7ad..89a5462 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -10,9 +10,9 @@ export const svgs: iSVG[] = [ { title: 'Mattermost', category: 'Software', - "route": { - "light": "/library/mattermost-light.svg", - "dark": "/library/mattermost-dark.svg" + route: { + light: '/library/mattermost-light.svg', + dark: '/library/mattermost-dark.svg' }, url: 'http://mattermost.com/' }, @@ -497,6 +497,15 @@ export const svgs: iSVG[] = [ route: '/library/telegram.svg', url: 'https://web.telegram.org/' }, + { + title: 'Matrix', + category: 'Social', + route: { + light: '/library/matrix-light.svg', + dark: '/library/matrix-dark.svg' + }, + url: 'https://matrix.org/' + }, { title: 'WhatsApp', category: 'Social', diff --git a/static/library/matrix-dark.svg b/static/library/matrix-dark.svg new file mode 100644 index 0000000..56e9a21 --- /dev/null +++ b/static/library/matrix-dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/matrix-light.svg b/static/library/matrix-light.svg new file mode 100644 index 0000000..248794a --- /dev/null +++ b/static/library/matrix-light.svg @@ -0,0 +1 @@ + \ No newline at end of file