export default function BrandMark({ size = 'default' }: { size?: 'default' | 'compact' }) { const containerClassName = size === 'compact' ? 'h-10 w-10 rounded-xl' : 'h-11 w-11 rounded-2xl' const iconClassName = size === 'compact' ? 'h-6 w-6' : 'h-7 w-7' return ( ) }