From 726c22ba185c96d2e8315a19431424add9270a1a Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Tue, 27 Jan 2026 18:34:59 +0100 Subject: [PATCH] feat: add new Hanko logo --- src/components/icons/Logo.tsx | 16 ++++++++++++++++ src/components/icons/index.ts | 1 + src/icons/logo.svg | 1 + 3 files changed, 18 insertions(+) create mode 100644 src/components/icons/Logo.tsx create mode 100644 src/icons/logo.svg diff --git a/src/components/icons/Logo.tsx b/src/components/icons/Logo.tsx new file mode 100644 index 0000000..a3f1ecd --- /dev/null +++ b/src/components/icons/Logo.tsx @@ -0,0 +1,16 @@ +import type { SVGProps } from 'react'; +const Logo = (props: SVGProps) => ( + + + + +); +export default Logo; diff --git a/src/components/icons/index.ts b/src/components/icons/index.ts index de38193..7aab7ab 100644 --- a/src/components/icons/index.ts +++ b/src/components/icons/index.ts @@ -8,6 +8,7 @@ export { default as Close } from './Close.tsx'; export { default as Download } from './Download.tsx'; export { default as Github } from './Github.tsx'; export { default as Instagram } from './Instagram.tsx'; +export { default as Logo } from './Logo.tsx'; export { default as Mail } from './Mail.tsx'; export { default as MailSend } from './MailSend.tsx'; export { default as Rss } from './Rss.tsx'; diff --git a/src/icons/logo.svg b/src/icons/logo.svg new file mode 100644 index 0000000..7021419 --- /dev/null +++ b/src/icons/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file