@props(['size' => 'md', 'rounded' => '2xl'])
@php
$sizes = [
'sm' => 'w-10 h-10 text-lg rounded-xl',
'md' => 'w-12 h-12 text-xl rounded-2xl',
'lg' => 'w-16 h-16 text-2xl rounded-2xl',
];
$sizeClass = $sizes[$size] ?? $sizes['md'];
$roundClass = $rounded === 'xl' ? 'rounded-xl' : 'rounded-2xl';
@endphp
@if(!empty($branding['logo_url']))
merge(['class' => "{$sizeClass} object-contain shrink-0 shadow-lg bg-white"]) }}>
@else