From 760676f9888c4906c92058ffe2dec578bd20a4da Mon Sep 17 00:00:00 2001 From: ngc2207 Date: Sun, 29 Dec 2024 22:36:03 +0800 Subject: [PATCH] feat(header): add Logo and Logomark components --- src/components/logo.tsx | 94 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 src/components/logo.tsx diff --git a/src/components/logo.tsx b/src/components/logo.tsx new file mode 100644 index 0000000..62db58c --- /dev/null +++ b/src/components/logo.tsx @@ -0,0 +1,94 @@ +export function Logomark(props: React.ComponentPropsWithoutRef<"svg">) { + return ( + + ); +} + +export function Logo(props: React.ComponentPropsWithoutRef<"svg">) { + return ( + + ); +}