2024-07-22 13:12:55 +02:00
|
|
|
import clsx from "clsx";
|
2024-07-22 11:49:47 +02:00
|
|
|
import type { ComponentPropsWithoutRef } from "react";
|
2025-01-17 15:46:46 +01:00
|
|
|
// Uncomment this on dev branches
|
2025-04-21 17:47:18 +02:00
|
|
|
import { Badge } from "./Metadata";
|
2024-07-22 11:49:47 +02:00
|
|
|
|
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,
|
|
|
|
|
)}
|
|
|
|
|
>
|
2024-08-28 00:09:17 +02:00
|
|
|
<img
|
|
|
|
|
src="https://cdn.versia.pub/branding/icon.svg"
|
|
|
|
|
alt="Logo"
|
|
|
|
|
className="h-full rounded-sm"
|
|
|
|
|
/>
|
2024-07-22 13:12:55 +02:00
|
|
|
<span className="fill-zinc-900 dark:fill-white font-semibold text-lg">
|
2025-04-21 17:47:18 +02:00
|
|
|
Versia Protocol <Badge className="!h-6">Dev</Badge>
|
2024-07-22 13:12:55 +02:00
|
|
|
</span>
|
|
|
|
|
</div>
|
2024-07-22 11:49:47 +02:00
|
|
|
);
|
|
|
|
|
}
|