import Image from 'next/image' import { cn } from '@/lib/utils' interface LogoProps { variant?: 'small' | 'long' className?: string showText?: boolean textSuffix?: string } export function Logo({ variant = 'small', className, showText = false, textSuffix, }: LogoProps) { if (variant === 'long') { return (
MOPC Logo {textSuffix && ( {textSuffix} )}
) } return (
MOPC Logo {showText && (
MOPC {textSuffix && ( {textSuffix} )}
)}
) }