From 473b84041e9dd44f779d81afb656a1f90487c920 Mon Sep 17 00:00:00 2001 From: Max Peintner Date: Tue, 23 May 2023 10:14:53 +0200 Subject: [PATCH] optional src --- apps/login/ui/Logo.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/login/ui/Logo.tsx b/apps/login/ui/Logo.tsx index afb1b79e4e1..09819f2ac35 100644 --- a/apps/login/ui/Logo.tsx +++ b/apps/login/ui/Logo.tsx @@ -1,8 +1,8 @@ import Image from "next/image"; type Props = { - darkSrc: string; - lightSrc: string; + darkSrc?: string; + lightSrc?: string; height?: number; width?: number; };