aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/components/logos
diff options
context:
space:
mode:
authorLynithDev <61880709+LynithDev@users.noreply.github.com>2023-10-16 21:23:42 +0200
committerLynithDev <61880709+LynithDev@users.noreply.github.com>2023-10-16 21:23:42 +0200
commit11fd60da81dd78f5fb99bc061078e1b13bbe082a (patch)
tree48c44587ac728b23c1557f770c1661f43cb492d3 /apps/website/src/components/logos
parent33197b013f3c643d6c6dada41470459d2f90b4c0 (diff)
downloadNexus-11fd60da81dd78f5fb99bc061078e1b13bbe082a.tar.gz
Nexus-11fd60da81dd78f5fb99bc061078e1b13bbe082a.tar.bz2
Nexus-11fd60da81dd78f5fb99bc061078e1b13bbe082a.zip
Button + Section component, new Icon component + new colors
Diffstat (limited to 'apps/website/src/components/logos')
-rw-r--r--apps/website/src/components/logos/Logo.astro4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/website/src/components/logos/Logo.astro b/apps/website/src/components/logos/Logo.astro
index 0532396..2fd6bea 100644
--- a/apps/website/src/components/logos/Logo.astro
+++ b/apps/website/src/components/logos/Logo.astro
@@ -10,7 +10,7 @@ export interface Props extends HTMLAttributes<"svg"> {
silent?: boolean,
}
-const {
+const {
logo,
silent = false,
size = undefined,
@@ -44,7 +44,7 @@ try {
svg = svg.replace(/<svg/, `<svg ${Object.entries(attr).map(([key, value]) => `${key}="${value}"`).join(" ")}`);
} catch (err) {
- if (typeof silent != "boolean" || silent == false) console.error(err);
+
}
---