diff options
| author | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-10-16 21:23:42 +0200 |
|---|---|---|
| committer | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-10-16 21:23:42 +0200 |
| commit | 11fd60da81dd78f5fb99bc061078e1b13bbe082a (patch) | |
| tree | 48c44587ac728b23c1557f770c1661f43cb492d3 /apps/website/src/components/logos | |
| parent | 33197b013f3c643d6c6dada41470459d2f90b4c0 (diff) | |
| download | Nexus-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.astro | 4 |
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); + } --- |
