From d7147efa0ce53bd14f6a3c4f199d0008866db14b Mon Sep 17 00:00:00 2001 From: Eric Tuvesson Date: Tue, 2 Apr 2024 15:05:14 +0200 Subject: [PATCH] feat: Updated SVG logos in Logo.tsx (#8) Co-authored-by: alan-x-n --- .../src/components/common/Logo/Logo.tsx | 87 ++++++++++++------- 1 file changed, 55 insertions(+), 32 deletions(-) diff --git a/packages/noodl-core-ui/src/components/common/Logo/Logo.tsx b/packages/noodl-core-ui/src/components/common/Logo/Logo.tsx index c244a5c..d3fe8e5 100644 --- a/packages/noodl-core-ui/src/components/common/Logo/Logo.tsx +++ b/packages/noodl-core-ui/src/components/common/Logo/Logo.tsx @@ -60,37 +60,66 @@ export function Logo({ const DefaultIcon = React.memo(function () { return ( - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); }); const InvertedIcon = React.memo(function () { return ( - - - + + + + + + + + + + + ); }); @@ -98,14 +127,8 @@ const InvertedIcon = React.memo(function () { const GrayscaleIcon = React.memo(function () { return ( - - + + ); });