diff --git a/src/frontend/src/lib/components/icons/GoogleIcon.svelte b/src/frontend/src/lib/components/icons/GoogleIcon.svelte index 574601d7c3..85e33c4152 100644 --- a/src/frontend/src/lib/components/icons/GoogleIcon.svelte +++ b/src/frontend/src/lib/components/icons/GoogleIcon.svelte @@ -1,14 +1,10 @@ - + import type { SVGAttributes } from "svelte/elements"; - type Props = SVGAttributes & { - size?: string; - }; - - const { size = "1.25rem", ...props }: Props = $props(); + const { class: className, ...props }: SVGAttributes = $props(); - +