aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/HoarderIcon.tsx
blob: 94c201e9943b82f51bf0c9c970c1052343e6fb23 (plain) (blame)
1
2
3
4
5
6
7
8
9
import KarakeepFull from "@/public/icons/karakeep-full.svg";

export default function HoarderLogo({ height }: { height: number }) {
  return (
    <span className="flex items-center">
      <KarakeepFull height={height} className={`fill-foreground`} />
    </span>
  );
}