Skip to content
Snippets Groups Projects
logo.tsx 292 B
import { Icons } from "./icons";

export function GameUnityLogo({ className }: { className?: string }) {
    return (
        <>
            <Icons.logo className={`dark:hidden ${className}`} />
            <Icons.logoWhite className={`hidden dark:block ${className}`} />
        </>
    )
}