import Image from "next/image"
import Link from "next/link"
import { cn } from "@/lib/utils"
type AdminLogoProps = {
className?: string
href?: string | null
variant?: "full" | "mark"
}
export function AdminLogo({
className,
href = "/admin/settings",
variant = "full",
}: AdminLogoProps) {
const img = (
)
if (href === null) return img
return (
{img}
)
}