blob: a4b76f6a5114466f8bd6db07d42d5ca04b91394a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import HoarderLogoIcon from "@/public/icons/logo-icon.svg";
import HoarderLogoText from "@/public/icons/logo-text.svg";
export default function HoarderLogo({
height,
gap,
}: {
height: number;
gap: string;
}) {
return (
<span style={{ gap }} className="flex items-center">
<HoarderLogoIcon height={height} className={`fill-foreground`} />
<HoarderLogoText
height={(height * 2) / 3}
className={`fill-foreground`}
/>
</span>
);
}
|