From dcda3ee1792f73960d3ac5e0abbee83e00b40f30 Mon Sep 17 00:00:00 2001 From: John Doe Date: Sat, 9 Sep 2023 17:18:52 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Added=20LogoSvgLight=20component?= =?UTF-8?q?=20=F0=9F=9A=80=20This=20component=20handles=20the=20logo=20dis?= =?UTF-8?q?play=20=F0=9F=8E=AF=20Enhances=20the=20visual=20appeal=20of=20t?= =?UTF-8?q?he=20project=20=F0=9F=94=A7=20Implements=20SVG=20rendering=20fo?= =?UTF-8?q?r=20the=20logo=20=E2=9C=85=20Tested=20and=20ready=20for=20produ?= =?UTF-8?q?ction=20use?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/shared/LogoSvgLight.tsx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/shared/LogoSvgLight.tsx diff --git a/src/shared/LogoSvgLight.tsx b/src/shared/LogoSvgLight.tsx new file mode 100644 index 0000000..aeb142f --- /dev/null +++ b/src/shared/LogoSvgLight.tsx @@ -0,0 +1,31 @@ +import React from "react"; + +const LogoSvgLight = () => { + return ( + + + + + + + ); +}; + +export default LogoSvgLight;