From 61ba9fd1f62cb959f197cf95c2686809318c6482 Mon Sep 17 00:00:00 2001 From: Pauline Date: Mon, 22 Jan 2024 03:30:30 +0100 Subject: chore(deps): bump and format --- apps/website/src/components/icons/Icon.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/website/src/components/icons') 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) { -- cgit