export function BrandLogo({ className = '', iconClassName = 'size-10 rounded-[6px]', iconButtonLabel = 'MediConnect', markClassName = 'size-6', onIconClick, textClassName = 'text-2xl font-bold leading-8 tracking-[-0.025em] text-white', }) { const icon = (
) return (
{onIconClick ? ( ) : ( icon )}

MediConnect

) } export function StethoscopeIcon({ className = 'size-6' }) { return ( ) }