From 349fa936d54918a22d871a9e9e44691775b8abc8 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Mon, 9 Oct 2023 02:34:52 -0400 Subject: [PATCH] refactor: update imports and reformat --- .../lume/LumeIdentity/LumeLogoBg.tsx | 100 +++++++++++++----- 1 file changed, 72 insertions(+), 28 deletions(-) diff --git a/src/components/lume/LumeIdentity/LumeLogoBg.tsx b/src/components/lume/LumeIdentity/LumeLogoBg.tsx index d5fea3e..fa4b52e 100644 --- a/src/components/lume/LumeIdentity/LumeLogoBg.tsx +++ b/src/components/lume/LumeIdentity/LumeLogoBg.tsx @@ -1,30 +1,74 @@ -import React from "react"; - -const LumeLogoBg = ({ className }: { className: string }) => { - return - - - - - - - - - - - - - - - - - - -} +const LumeLogoBg = ({ className }: { className?: string }) => { + return ( + + + + + + + + + + + + + + + + + + + + ); +}; export default LumeLogoBg;