diff options
Diffstat (limited to 'apps/landing/components')
| -rw-r--r-- | apps/landing/components/HoarderLogo.tsx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/apps/landing/components/HoarderLogo.tsx b/apps/landing/components/HoarderLogo.tsx new file mode 100644 index 00000000..a4b76f6a --- /dev/null +++ b/apps/landing/components/HoarderLogo.tsx @@ -0,0 +1,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> + ); +} |
