diff options
author | Pauline <git@ethanlibs.co> | 2024-01-22 03:30:30 +0100 |
---|---|---|
committer | Pauline <git@ethanlibs.co> | 2024-01-22 03:30:30 +0100 |
commit | 61ba9fd1f62cb959f197cf95c2686809318c6482 (patch) | |
tree | 44bec06175f1b833f2131d14f461cf288e5b9200 /apps/website/src/components/icons | |
parent | fbaa87ef4fcad18ac03cb0cfa82fb106751c1b38 (diff) | |
download | Nexus-61ba9fd1f62cb959f197cf95c2686809318c6482.tar.gz Nexus-61ba9fd1f62cb959f197cf95c2686809318c6482.tar.bz2 Nexus-61ba9fd1f62cb959f197cf95c2686809318c6482.zip |
chore(deps): bump and format
Diffstat (limited to 'apps/website/src/components/icons')
-rw-r--r-- | apps/website/src/components/icons/Icon.astro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/website/src/components/icons/Icon.astro b/apps/website/src/components/icons/Icon.astro index cfb14ca..1fc273f 100644 --- a/apps/website/src/components/icons/Icon.astro +++ b/apps/website/src/components/icons/Icon.astro @@ -35,9 +35,9 @@ type _Icons = export type Icons = _Icons; // bypass for Astro compiler issue https://github.com/withastro/compiler/issues/554#issuecomment-1741702411 interface Props extends HTMLAttributes<'svg'> { - icon: Icons - path?: string - size?: number | [number, number] + icon: Icons; + path?: string; + size?: number | [number, number]; } async function getSVG(name: string) { |