export type LogoType = 'primary' | 'small'; export default function NoTextLogo({ className, type, grayscale = false, }: { className?: string; type?: LogoType; grayscale?: boolean; }) { if (type === 'small') { return ( ); } return ( ); }