"use client" import { Icon } from "@iconify/react" import { techBrandIcon } from "@/lib/admin-settings/tech-brand-icons" import { cn } from "@/lib/utils" export function TechBrandSelectLabel({ brand, icon, children, className, iconClassName, suffix, }: { brand?: string icon?: string children: React.ReactNode className?: string iconClassName?: string suffix?: React.ReactNode }) { const resolved = icon ?? (brand ? techBrandIcon(brand) : undefined) return ( {resolved ? ( ) : null} {children} {suffix} ) }