import { cn } from "@/lib/utils"; type Props = { className?: string; size?: "sm" | "md" | "lg"; }; const sizeClasses = { sm: "h-12 min-w-[100px] px-4 text-xs", md: "h-16 min-w-[140px] px-6 text-sm", lg: "h-20 min-w-[180px] px-8 text-base", }; export function PartnerLogoPlaceholder({ className, size = "md" }: Props) { return (
Your logo here
); }