aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/KarakeepIcon.tsx
blob: d70b3e178285ea095d621cc3392a4b551caa6f7f (plain) (blame)
1
2
3
4
5
6
7
8
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>
  );
}