2024-07-22 13:12:55 +02:00
|
|
|
import logo from "@/images/branding/logo.webp";
|
|
|
|
|
import clsx from "clsx";
|
2024-07-22 11:49:47 +02:00
|
|
|
import type { ComponentPropsWithoutRef } from "react";
|
|
|
|
|
|
2024-07-22 13:12:55 +02:00
|
|
|
export function Logo(props: ComponentPropsWithoutRef<"div">) {
|
2024-07-22 11:49:47 +02:00
|
|
|
return (
|
2024-07-22 13:12:55 +02:00
|
|
|
<div
|
|
|
|
|
{...props}
|
|
|
|
|
className={clsx(
|
|
|
|
|
"flex flex-row gap-x-2 items-center",
|
|
|
|
|
props.className,
|
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
<img src={logo.src} alt="Logo" className="h-full rounded-sm" />
|
|
|
|
|
<span className="fill-zinc-900 dark:fill-white font-semibold text-lg">
|
2024-08-13 16:47:37 +02:00
|
|
|
Versia Protocol
|
2024-07-22 13:12:55 +02:00
|
|
|
</span>
|
|
|
|
|
</div>
|
2024-07-22 11:49:47 +02:00
|
|
|
);
|
|
|
|
|
}
|