aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/HoarderIcon.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/components/HoarderIcon.tsx')
-rw-r--r--apps/web/components/HoarderIcon.tsx19
1 files changed, 4 insertions, 15 deletions
diff --git a/apps/web/components/HoarderIcon.tsx b/apps/web/components/HoarderIcon.tsx
index a4b76f6a..94c201e9 100644
--- a/apps/web/components/HoarderIcon.tsx
+++ b/apps/web/components/HoarderIcon.tsx
@@ -1,20 +1,9 @@
-import HoarderLogoIcon from "@/public/icons/logo-icon.svg";
-import HoarderLogoText from "@/public/icons/logo-text.svg";
+import KarakeepFull from "@/public/icons/karakeep-full.svg";
-export default function HoarderLogo({
- height,
- gap,
-}: {
- height: number;
- gap: string;
-}) {
+export default function HoarderLogo({ height }: { height: number }) {
return (
- <span style={{ gap }} className="flex items-center">
- <HoarderLogoIcon height={height} className={`fill-foreground`} />
- <HoarderLogoText
- height={(height * 2) / 3}
- className={`fill-foreground`}
- />
+ <span className="flex items-center">
+ <KarakeepFull height={height} className={`fill-foreground`} />
</span>
);
}