9 lines
310 B
TypeScript
9 lines
310 B
TypeScript
import { cn } from "@/lib/utils"
|
|
|
|
/** NEGOTIUM 워드마크 (public/logo.png). 헤더·푸터 공용 — 크기는 className 의 h-* 로 조정. */
|
|
function Logo({ className }: { className?: string }) {
|
|
return <img src="/logo.png" alt="NEGOTIUM" className={cn("h-4 w-auto", className)} />
|
|
}
|
|
|
|
export { Logo }
|