From 9b8320c10d51cc449b3fb5c1532408bff5655788 Mon Sep 17 00:00:00 2001 From: tech62 <16237642+tech62@users.noreply.github.com> Date: Fri, 16 May 2025 17:12:46 +0200 Subject: [PATCH] feat: add css class to logo for custom css (#3121) Co-authored-by: Meier Lukas --- apps/nextjs/src/components/layout/logo/logo.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/nextjs/src/components/layout/logo/logo.tsx b/apps/nextjs/src/components/layout/logo/logo.tsx index beb3f493c..36eaba57b 100644 --- a/apps/nextjs/src/components/layout/logo/logo.tsx +++ b/apps/nextjs/src/components/layout/logo/logo.tsx @@ -11,11 +11,11 @@ interface LogoProps { export const Logo = ({ size = 60, shouldUseNextImage = false, src, alt }: LogoProps) => shouldUseNextImage ? ( - {alt} + {alt} ) : ( // we only want to use next/image for logos that we are sure will be preloaded and are allowed // eslint-disable-next-line @next/next/no-img-element - {alt} + {alt} ); const logoWithTitleSizes = {