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