aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/KarakeepIcon.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/components/KarakeepIcon.tsx')
-rw-r--r--apps/web/components/KarakeepIcon.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/web/components/KarakeepIcon.tsx b/apps/web/components/KarakeepIcon.tsx
new file mode 100644
index 00000000..d70b3e17
--- /dev/null
+++ b/apps/web/components/KarakeepIcon.tsx
@@ -0,0 +1,9 @@
+import KarakeepFull from "@/public/icons/karakeep-full.svg";
+
+export default function KarakeepLogo({ height }: { height: number }) {
+ return (
+ <span className="flex items-center">
+ <KarakeepFull height={height} className={`fill-foreground`} />
+ </span>
+ );
+}