import React from "react"; interface LogoProps { size?: "sm" | "md" | "lg"; iconOnly?: boolean; } const sizeMap = { sm: { text: "text-lg", icon: "w-8 h-8 text-sm" }, md: { text: "text-xl", icon: "w-9 h-9 text-base" }, lg: { text: "text-2xl", icon: "w-11 h-11 text-lg" }, }; export function Logo({ size = "md", iconOnly = false }: LogoProps) { const s = sizeMap[size]; if (iconOnly) { return (